nix check fix
All checks were successful
gitea-deepak/nixconf/pipeline/head This commit looks good

This commit is contained in:
2025-03-18 11:43:20 -05:00
parent f0dce6cde0
commit bbe9475175
3 changed files with 7 additions and 2 deletions

View File

@@ -28,17 +28,22 @@ in
};
modules = [
./maxos/configuration.nix
inputs.sops-nix.nixosModules.sops
homeManager.nixosModules.home-manager
{
home-manager.extraSpecialArgs = {
withGUI = true;
gitSigningKey = "976F3357369149AB";
rundirnum = "1000";
inherit nixpkgs-unstable;
};
home-manager.useGlobalPkgs = true;
home-manager.users.deepak = {
imports = [ ../home/deepak/home.nix ];
};
home-manager.sharedModules = [
inputs.sops-nix.homeManagerModules.sops
];
}
];
};

View File

@@ -14,7 +14,7 @@ in
];
nix = {
package = pkgs.nixFlakes;
# package = pkgs.nixFlakes;
extraOptions = ''
experimental-features = nix-command flakes
keep-outputs = true

View File

@@ -34,7 +34,7 @@ in
networking.hostName = "nixosWSL"; # Define your hostname.
# Enable nix flakes
nix.package = pkgs.nixFlakes;
# nix.package = pkgs.nixFlakes;
nix.extraOptions = ''
experimental-features = nix-command flakes
'';