This commit is contained in:
Miguel Palhas
2025-06-29 16:15:48 +01:00
parent e10d94b329
commit 7de527822c
3 changed files with 9 additions and 8 deletions
Generated
+3 -3
View File
@@ -958,11 +958,11 @@
"nixpkgs": "nixpkgs_7" "nixpkgs": "nixpkgs_7"
}, },
"locked": { "locked": {
"lastModified": 1750998539, "lastModified": 1751200680,
"narHash": "sha256-lmyIs/tlMtRq92NYPAix8iwN85oCrcqIXzOAo9gqYl0=", "narHash": "sha256-sVep+p1XtL4tpArd1of+8mA3mJ9T0NsHNOCLGKxxRns=",
"owner": "0xc000022070", "owner": "0xc000022070",
"repo": "zen-browser-flake", "repo": "zen-browser-flake",
"rev": "ea8a9b6b32027a1eeba7fcef4a3368d7f867c110", "rev": "35ba63ea42a57e8470e605b178e5228a29edbcbe",
"type": "github" "type": "github"
}, },
"original": { "original": {
+2 -2
View File
@@ -13,7 +13,7 @@
../common/features/intel-graphics.nix ../common/features/intel-graphics.nix
../common/features/wayland.nix ../common/features/wayland.nix
../common/features/x11.nix ../common/features/x11.nix
../common/features/greetd.nix # ../common/features/greetd.nix
../common/features/pipewire.nix ../common/features/pipewire.nix
../common/features/docker.nix ../common/features/docker.nix
../common/features/fonts.nix ../common/features/fonts.nix
@@ -52,7 +52,7 @@
let let
authorizedKeys = pkgs.fetchurl { authorizedKeys = pkgs.fetchurl {
url = "https://github.com/naps62.keys"; url = "https://github.com/naps62.keys";
sha256 = "sha256-QKVtVXIVxYUqpnNCJAfRow3RG4j2jkQSFOwTeDgwO7s="; sha256 = "sha256-O5JbzK5ulPob0HIrO8DT1MxfkC9bnfBw/0GR8Xu1tjw=";
}; };
in in
pkgs.lib.splitString "\n" (builtins.readFile authorizedKeys); pkgs.lib.splitString "\n" (builtins.readFile authorizedKeys);
+4 -3
View File
@@ -12,7 +12,10 @@ in
services.xserver = { services.xserver = {
enable = true; enable = true;
displayManager.startx.enable = true; displayManager = {
startx.enable = true;
gdm.enable = true;
};
autoRepeatDelay = 250; autoRepeatDelay = 250;
autoRepeatInterval = 30; autoRepeatInterval = 30;
}; };
@@ -24,7 +27,6 @@ in
gnome.enable = true; gnome.enable = true;
}; };
services.xserver.windowManager = { services.xserver.windowManager = {
# gnome.enable = true;
i3 = { i3 = {
enable = true; enable = true;
extraPackages = with pkgs; [ extraPackages = with pkgs; [
@@ -35,7 +37,6 @@ in
}; };
programs.i3lock.enable = true; programs.i3lock.enable = true;
services.displayManager.gdm.enable = true;
programs.dconf.enable = true; programs.dconf.enable = true;
services = { services = {
sysprof.enable = true; sysprof.enable = true;