fix analysis problems
This commit is contained in:
parent
0f301c0496
commit
4be2f4722a
3 changed files with 5 additions and 1 deletions
|
@ -18,4 +18,5 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
nix flake metadata
|
nix flake metadata
|
||||||
nix flake check
|
nix flake check
|
||||||
|
nix run "github:DeterminateSystems/flake-checker"
|
||||||
nix --no-sandbox develop -c statix check
|
nix --no-sandbox develop -c statix check
|
||||||
|
|
|
@ -19,7 +19,9 @@
|
||||||
mkRaspi = pkgs: hostname:
|
mkRaspi = pkgs: hostname:
|
||||||
pkgs.lib.nixosSystem {
|
pkgs.lib.nixosSystem {
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
modules = [ (./. + "/nixos/boxes/${hostname}") ];
|
modules = [ (./. + "/nixos/boxes/${hostname}")
|
||||||
|
sops.nixosModules.sops
|
||||||
|
];
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
};
|
};
|
||||||
mkKiosk = pkgs: system: hostname:
|
mkKiosk = pkgs: system: hostname:
|
||||||
|
|
|
@ -16,4 +16,5 @@
|
||||||
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
time.timeZone = "Europe/London";
|
time.timeZone = "Europe/London";
|
||||||
|
programs.zsh.enable=true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue