maybe zsh works

This commit is contained in:
2026-07-01 20:10:13 +01:00
parent b4350f2dae
commit 13119c8f7b
4 changed files with 41 additions and 2 deletions

37
flake.lock generated
View File

@@ -64,11 +64,46 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_2": {
"locked": {
"lastModified": 1780336545,
"narHash": "sha256-vhVhuXzFrIOfcssC/9hDHx7MHzDKjF3keHuREOQqQiQ=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "4df1b885d76a54e1aa1a318f8d16fd6005b6401f",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"flake-parts": "flake-parts", "flake-parts": "flake-parts",
"import-tree": "import-tree", "import-tree": "import-tree",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"wrappers": "wrappers"
}
},
"wrappers": {
"inputs": {
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1782135443,
"narHash": "sha256-vAmbArdCyjqpVW+37aCy/PMBOLIqukUXLQuEKLwUhA4=",
"owner": "BirdeeHub",
"repo": "nix-wrapper-modules",
"rev": "6e7f66fa2cdf4d63162580b438f7fcf87c28a46f",
"type": "github"
},
"original": {
"owner": "BirdeeHub",
"repo": "nix-wrapper-modules",
"type": "github"
} }
} }
}, },

View File

@@ -10,5 +10,6 @@
wrappers.url = "github:BirdeeHub/nix-wrapper-modules"; wrappers.url = "github:BirdeeHub/nix-wrapper-modules";
}; };
outputs = inputs: inputs.flake-parts.lib.mkFlake {inherit inputs;} (inputs.import-tree ./modules); outputs = inputs: inputs.flake-parts.lib.mkFlake {inherit inputs;} (inputs.import-tree ./modules);
} }

View File

@@ -1,6 +1,7 @@
{ {
self, self,
inputs, inputs,
...
}: { }: {
flake.nixosModules.hackstationConfiguration = {pkgs, ...}: { flake.nixosModules.hackstationConfiguration = {pkgs, ...}: {
networking.hostName = "HACKSTATION"; networking.hostName = "HACKSTATION";

View File

@@ -4,6 +4,8 @@
... ...
}: { }: {
perSystem = {pkgs, ...}: { perSystem = {pkgs, ...}: {
packages.myZsh = {inputs.wrappers.wrappers.zsh.zshrc.content = (self.dots.zshrc pkgs);}; packages.myZsh = inputs.wrappers.wrappers.zsh.wrap {
zshrc.content = (self.dots.zshrc pkgs);
};
}; };
} }