[thinkman] update to 21.05

This commit is contained in:
Felix Buehler 2021-06-02 10:37:28 +02:00
parent f8a677958b
commit 17f579e79a
11 changed files with 31 additions and 46 deletions

View file

@ -4,7 +4,7 @@
hardware.bluetooth = {
enable = true;
package = pkgs.bluezFull;
config = {
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};

View file

@ -20,7 +20,7 @@ in
# gnome services
services.dbus.packages = [ pkgs.gnome3.dconf ];
services.udev.packages = [ pkgs.gnome3.gnome-settings-daemon ];
services.gnome3 = {
services.gnome = {
gnome-keyring.enable = true;
glib-networking.enable = true; # network-mount
};

View file

@ -26,4 +26,5 @@
#unifont # unicode
];
};
nixpkgs.config.joypixels.acceptLicense = true;
}

View file

@ -3,17 +3,18 @@
{
location.provider = "geoclue2";
services.geoclue2.enable = true;
services.geoclue2.enableDemoAgent = true;
services.geoclue2.appConfig."gammastep" = {
services.geoclue2 = {
enable = true;
enableDemoAgent = true;
appConfig."gammastep" = {
desktopID = "gammastep";
isAllowed = true;
isSystem = false;
# Empty list allows all users
users = [ ];
};
services.geoclue2.appConfig."gammastep-indicator" = {
appConfig."gammastep-indicator" = {
desktopID = "gammastep-indicator";
isAllowed = true;
isSystem = false;
@ -21,4 +22,5 @@
users = [ ];
};
};
}

View file

@ -1,7 +1,4 @@
{ config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
environment.systemPackages = with pkgs; [
audacity
@ -13,9 +10,9 @@ in
imagemagick
image_optim
inkscape
unstable.puddletag # audio tagging
puddletag # audio tagging
mp3val
unstable.mediaelch
mediaelch
picard
projectm
shotwell

View file

@ -1,12 +1,9 @@
{ config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
environment.systemPackages = with pkgs; [
element-desktop
mumble
unstable.nheko
nheko
pidgin
skypeforlinux
signal-desktop

View file

@ -1,11 +1,8 @@
{ config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
environment.systemPackages = with pkgs; [
nextcloud-client
unstable.syncthing
syncthing
magic-wormhole
vdirsyncer
];

View file

@ -1,10 +1,7 @@
{ config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
environment.systemPackages = with pkgs; [
unstable.jabref
jabref
biber
texlive.combined.scheme-full
texstudio

View file

@ -1,7 +1,4 @@
{ config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
environment.systemPackages = with pkgs; [
thunderbolt

View file

@ -1,7 +1,4 @@
{ config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
programs.light.enable = true;
@ -9,7 +6,7 @@ in
polkit_gnome
];
environment.pathsToLink = [ "/libexec" ];
#programs.wshowkeys.enable = true;
programs.wshowkeys.enable = true;
programs.sway = {
enable = true;
@ -24,7 +21,7 @@ in
dmenu
gammastep
grim
unstable.i3status-rust
i3status-rust
mako
slurp
swayidle
@ -34,7 +31,7 @@ in
wl-clipboard
wofi
xwayland
unstable.wshowkeys
wshowkeys
];

View file

@ -55,7 +55,7 @@
options = "--delete-older-than 30d";
};
system.stateVersion = "20.09";
system.stateVersion = "21.05";
system.autoUpgrade.enable = true;
system.autoUpgrade.channel = https://nixos.org/channels/nixos-20.09;
system.autoUpgrade.channel = https://nixos.org/channels/nixos-21.05;
}