diff options
| -rw-r--r-- | config/git/default.nix | 1 | ||||
| -rw-r--r-- | flake.lock | 12 | ||||
| -rw-r--r-- | modules/core/global.nix | 2 | ||||
| -rw-r--r-- | modules/login.nix | 4 | 
4 files changed, 11 insertions, 8 deletions
| diff --git a/config/git/default.nix b/config/git/default.nix index 2645900..6dd0bea 100644 --- a/config/git/default.nix +++ b/config/git/default.nix @@ -12,6 +12,7 @@           process = "${pkgs.git-lfs}/bin/git-lfs filter-process --skip";           required = true;        }; +      push = { autoSetupRemote = true; };      };    };  } @@ -7,11 +7,11 @@          ]        },        "locked": { -        "lastModified": 1712317700, -        "narHash": "sha256-rnkQ6qMhlxfjpCECkTMlFXHU/88QvC5KpdJWq5H6F1E=", +        "lastModified": 1712759992, +        "narHash": "sha256-2APpO3ZW4idlgtlb8hB04u/rmIcKA8O7pYqxF66xbNY=",          "owner": "nix-community",          "repo": "home-manager", -        "rev": "782eed8bb64b27acaeb7c17be4a095c85e65717f", +        "rev": "31357486b0ef6f4e161e002b6893eeb4fafc3ca9",          "type": "github"        },        "original": { @@ -22,11 +22,11 @@      },      "nixpkgs": {        "locked": { -        "lastModified": 1712163089, -        "narHash": "sha256-Um+8kTIrC19vD4/lUCN9/cU9kcOsD1O1m+axJqQPyMM=", +        "lastModified": 1712608508, +        "narHash": "sha256-vMZ5603yU0wxgyQeHJryOI+O61yrX2AHwY6LOFyV1gM=",          "owner": "nixos",          "repo": "nixpkgs", -        "rev": "fd281bd6b7d3e32ddfa399853946f782553163b5", +        "rev": "4cba8b53da471aea2ab2b0c1f30a81e7c451f4b6",          "type": "github"        },        "original": { diff --git a/modules/core/global.nix b/modules/core/global.nix index 2e7ed90..138d970 100644 --- a/modules/core/global.nix +++ b/modules/core/global.nix @@ -11,6 +11,8 @@ in {      nixPath = [ "nixpkgs=${nix_path}" ];    }; +  boot.kernelParams = [ "quiet" "splash" ]; +    systemd.tmpfiles.rules = [      "L+ ${nix_path} - - - - ${pkgs.path}"    ]; diff --git a/modules/login.nix b/modules/login.nix index 58e4ac4..3d9fb31 100644 --- a/modules/login.nix +++ b/modules/login.nix @@ -32,9 +32,9 @@    security.polkit.enable = true; -  security.pam.services.swaylock.text = '' +  /* security.pam.services.swaylock.text = ''      auth include login -  ''; +  ''; */    services.xserver.libinput.enable = true; | 
