fix: various hm-only fixes

This commit is contained in:
winston 2023-06-15 14:30:19 +02:00
parent b6966ef25c
commit 9eeacaf66b
Signed by: winston
GPG key ID: 3786770EDBC2B481
3 changed files with 4 additions and 3 deletions

View file

@ -21,7 +21,7 @@ build *args:
@just rebuild build {{args}}
home *args:
nix run ".#homeConfigurations.winston.activationPackage"
nix run ".#homeConfigurations.winston.activationPackage" --accept-flake-config {{args}}
[linux]
boot *args:

View file

@ -63,6 +63,7 @@
}: {
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [overlays];
};
@ -115,7 +116,7 @@
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"pre-commit-hooks.cachix.org-1:Pkk3Panw5AW24TOv6kz3PvLhlH8puAsJTBbOPmBo7Rc="
];
extra-trusted-users = ["@wheel"];
extra-trusted-users = ["@sudo" "@wheel"];
tarball-ttl = 604800;
warn-dirty = false;
};

View file

@ -17,7 +17,6 @@
else if pkgs.stdenv.isDarwin
then "/Users/${username}"
else throw "Unsupported system";
home.stateVersion = "23.05";
home.username = username;
targets.genericLinux.enable = true;
xdg.mime.enable = true;
@ -28,6 +27,7 @@
sops.homeManagerModules.sops
caarlos0-nur.homeManagerModules.default
nekowinston-nur.homeManagerModules.default
./.
]
++ pkgs.lib.optionals (!isNixOS) [hmStandaloneConfig];
}