Compare commits

..

No commits in common. "b94df9aeea34891926a51119801042ab853394e4" and "8102c9ec47e6cc5c5106acb14b1b9dae2ced4376" have entirely different histories.

5 changed files with 7 additions and 24 deletions

12
flake.lock generated
View File

@ -74,11 +74,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1715534503, "lastModified": 1715447595,
"narHash": "sha256-5ZSVkFadZbFP1THataCaSf0JH2cAH3S29hU9rrxTEqk=", "narHash": "sha256-VsVAUQOj/cS1LCOmMjAGeRksXIAdPnFIjCQ0XLkCsT0=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2057814051972fa1453ddfb0d98badbea9b83c06", "rev": "062ca2a9370a27a35c524dc82d540e6e9824b652",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -90,11 +90,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1715542476, "lastModified": 1715395895,
"narHash": "sha256-FF593AtlzQqa8JpzrXyRws4CeKbc5W86o8tHt4nRfIg=", "narHash": "sha256-DreMqi6+qa21ffLQqhMQL2XRUkAGt3N7iVB5FhJKie4=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "44072e24566c5bcc0b7aa9178a0104f4cfffab19", "rev": "71bae31b7dbc335528ca7e96f479ec93462323ff",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -30,7 +30,6 @@ in
jq jq
kitty kitty
kubectl kubectl
krita
ncdu ncdu
nwg-look nwg-look
mumble mumble

View File

@ -1,14 +1,5 @@
{ user, pkgs, ... }: { { user, pkgs, ... }: {
home.packages = with pkgs; [ fd ]; home.packages = with pkgs; [ fd ];
programs.direnv = {
enable = true;
enableZshIntegration = true;
package = pkgs.unstable.direnv;
nix-direnv = {
enable = true;
package = pkgs.unstable.nix-direnv;
};
};
programs.zsh = { programs.zsh = {
enable = true; enable = true;
autocd = false; autocd = false;

View File

@ -1 +1 @@
{ imports = [ ./podman.nix ./fonts.nix ./users.nix ./services.nix ./security.nix ./git.nix ]; } { imports = [ ./podman.nix ./fonts.nix ./users.nix ./services.nix ./security.nix ]; }

View File

@ -1,7 +0,0 @@
{ ... }:
{
programs.git = {
enable = true;
lfs.enable = true;
};
}