Compare commits

...

5 Commits

Author SHA1 Message Date
b94df9aeea Add krita
Some checks failed
pre-commit / pre-commit (push) Failing after 20s
2024-05-15 03:54:53 +02:00
24dde4bb55 Add git lfs 2024-05-15 03:44:00 +02:00
ee662d342e Add direnv 2024-05-15 03:42:39 +02:00
1ee9a7e0eb Flake update 2024-05-14 21:10:42 +02:00
fc09463735 Flake update 2024-05-13 16:13:21 +02:00
5 changed files with 24 additions and 7 deletions

View File

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

View File

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

View File

@ -1,5 +1,14 @@
{ user, pkgs, ... }: {
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 = {
enable = true;
autocd = false;

View File

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

7
system/git.nix Normal file
View File

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