make comma work among other things

This commit is contained in:
alyx 2026-02-23 12:56:34 +00:00
parent 69cc127171
commit b9dc54a466
Signed by: alyx
SSH key fingerprint: SHA256:ikXQIBRoakFdxVU/cImm2/V8XxM0gMJU8QybMfU66H0
4 changed files with 42 additions and 13 deletions

View file

@ -7,9 +7,11 @@
home-manager.inputs.nixpkgs.follows = "nixpkgs";
waterfox.url = "github:Hythera/nix-waterfox";
nixpkgs-xr.url = "github:nix-community/nixpkgs-xr";
nix-index-database.url = "github:nix-community/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs@{self, nixpkgs, home-manager, nixpkgs-xr, ...}:{
outputs = inputs@{self, nixpkgs, home-manager, nixpkgs-xr, nix-index-database, ...}:{
nixosConfigurations."fenix" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
@ -30,6 +32,7 @@
};
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.sharedModules = [{ imports = with inputs; [nix-index-database.homeModules.default];}];
home-manager.users.maya = ./home;
}
];
@ -52,6 +55,7 @@
};
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.sharedModules = [{ imports = with inputs; [nix-index-database.homeModules.default];}];
home-manager.users.alyx = ./home;
}
];