Compare commits
4 commits
825d350ab4
...
96bb01aad3
| Author | SHA1 | Date | |
|---|---|---|---|
| 96bb01aad3 | |||
| 4cd870076c | |||
| 2796f070b8 | |||
| 5d67f5cb58 |
2 changed files with 13 additions and 8 deletions
|
|
@ -6,7 +6,7 @@
|
||||||
./x270.nix
|
./x270.nix
|
||||||
./scanner.nix
|
./scanner.nix
|
||||||
./printer.nix
|
./printer.nix
|
||||||
# ./clamav.nix
|
./clamav.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
|
@ -76,10 +76,9 @@
|
||||||
|
|
||||||
vscodium
|
vscodium
|
||||||
marktext
|
marktext
|
||||||
tor-browser-bundle-bin
|
tor-browser
|
||||||
libreoffice-fresh
|
libreoffice-fresh
|
||||||
tdesktop
|
telegram-desktop signal-desktop
|
||||||
signal-desktop
|
|
||||||
horizon-eda
|
horizon-eda
|
||||||
kicad-small
|
kicad-small
|
||||||
# cura
|
# cura
|
||||||
|
|
@ -114,6 +113,7 @@
|
||||||
exclude_regex = /home/.*/\.mozilla
|
exclude_regex = /home/.*/\.mozilla
|
||||||
exclude_regex = /home/.*/\.local
|
exclude_regex = /home/.*/\.local
|
||||||
exclude_regex = /home/.*/\.cargo
|
exclude_regex = /home/.*/\.cargo
|
||||||
|
exclude_regex = /home/.*/\.rustup
|
||||||
exclude_regex = /home/.*/\.texlive.*
|
exclude_regex = /home/.*/\.texlive.*
|
||||||
exclude_regex = /home/.*/\.vscode.*
|
exclude_regex = /home/.*/\.vscode.*
|
||||||
exclude_regex = sync_[0-9a-f]+\.db
|
exclude_regex = sync_[0-9a-f]+\.db
|
||||||
|
|
@ -127,6 +127,11 @@
|
||||||
localNetworkGameTransfers.openFirewall = true;
|
localNetworkGameTransfers.openFirewall = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.mullvad-vpn = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.mullvad-vpn;
|
||||||
|
};
|
||||||
|
|
||||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||||
"steam"
|
"steam"
|
||||||
"steam-original"
|
"steam-original"
|
||||||
|
|
@ -180,9 +185,9 @@
|
||||||
ExecStart = lib.mkForce "systemd-inhibit --what=sleep:handle-lid-switch --why='NixOS upgrade' ${updateScript}/bin/nixos-upgrade";
|
ExecStart = lib.mkForce "systemd-inhibit --what=sleep:handle-lid-switch --why='NixOS upgrade' ${updateScript}/bin/nixos-upgrade";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
services.logind.extraConfig = ''
|
services.logind.settings.Login = {
|
||||||
LidSwitchIgnoreInhibited = no
|
LidSwitchIgnoreInhibited = "no";
|
||||||
'';
|
};
|
||||||
|
|
||||||
services.earlyoom = {
|
services.earlyoom = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -11,10 +11,10 @@
|
||||||
};
|
};
|
||||||
displayManager = {
|
displayManager = {
|
||||||
lightdm.enable = true;
|
lightdm.enable = true;
|
||||||
gdm.wayland = false;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
services.displayManager = {
|
services.displayManager = {
|
||||||
|
gdm.wayland = false;
|
||||||
defaultSession = "xfce";
|
defaultSession = "xfce";
|
||||||
autoLogin.enable = true;
|
autoLogin.enable = true;
|
||||||
autoLogin.user = "fruchti";
|
autoLogin.user = "fruchti";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue