unclutter

This commit is contained in:
unexplrd
2025-02-07 13:31:41 +02:00
parent ff5765eeee
commit a33f397432
11 changed files with 188 additions and 194 deletions

View File

@ -9,18 +9,15 @@
self.nixosModules.desktop
self.nixosModules.system
./hardware-conf.nix
./users.nix
./programs.nix
./stylix.nix
./users.nix
];
desktop = {
niri.enable = true;
plasma.enable = true;
};
services.logind = {
lidSwitch = "ignore";
powerKey = "suspend";
};
nix.settings.experimental-features = ["nix-command" "flakes"];
system.stateVersion = "unstable";
@ -28,13 +25,14 @@
time.timeZone = "Europe/Kyiv";
locale.ukrainian.enable = true;
networking.hostName = "dunamis";
networking.networkmanager.enable = true;
# required for syncthing
networking.firewall = {
allowedTCPPorts = [22000];
allowedUDPPorts = [21027 22000];
networking = {
networkmanager.enable = true;
hostName = "dunamis";
# required for syncthing
firewall = {
allowedTCPPorts = [22000];
allowedUDPPorts = [21027 22000];
};
};
boot = {