add programs.wayland to os configuration

This commit is contained in:
2024-10-26 14:26:45 +02:00
parent 9ae756171d
commit 78fe6c7521
3 changed files with 10 additions and 7 deletions

View File

@ -59,4 +59,5 @@
environment.etc.nixosFlakeName.text = "${flakeName}"; environment.etc.nixosFlakeName.text = "${flakeName}";
programs.hyprland.enable = true;
} }

12
flake.lock generated
View File

@ -9,11 +9,11 @@
}, },
"locked": { "locked": {
"dir": "pkgs/firefox-addons", "dir": "pkgs/firefox-addons",
"lastModified": 1729753754, "lastModified": 1729915395,
"narHash": "sha256-eOr9ZXL68i27i2Xd+UHM95OBUFCEClEvqMbEACsIFMg=", "narHash": "sha256-fD9q0wKTRyem5EYO7pt2FfgDUK/0bkR8Mitq2KaZxA0=",
"owner": "rycee", "owner": "rycee",
"repo": "nur-expressions", "repo": "nur-expressions",
"rev": "88c24cff42f478f2d32685d4e2a7be246214294d", "rev": "f4a24161dbb580dc91bc59dc54b2d81308a71610",
"type": "gitlab" "type": "gitlab"
}, },
"original": { "original": {
@ -45,11 +45,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1729716953, "lastModified": 1729894599,
"narHash": "sha256-FbRKGRRd0amsk/WS/UV9ukJ8jT1dZ2pJBISxkX+uq6A=", "narHash": "sha256-nL9nzNE5/re/P+zOv7NX6bRm5e+DeS1HIufQUJ01w20=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "a4353cc43d1b4dd6bdeacea90eb92a8b7b78a9d7", "rev": "93435d27d250fa986bfec6b2ff263161ff8288cb",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -10,6 +10,9 @@
networking.wireless.enable = true; networking.wireless.enable = true;
networking.networkmanager.enable = false; networking.networkmanager.enable = false;
networking.firewall.allowedTCPPorts = [ 11470 12470 80 ];
networking.firewall.allowedUDPPorts = [ 11470 12470 80 ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
acpi acpi
tlp tlp
@ -25,5 +28,4 @@
services.libinput.touchpad.tapping = false; services.libinput.touchpad.tapping = false;
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
} }