nix-configs/monosodium-glutamate-g/flake.nix

32 lines
933 B
Nix
Raw Normal View History

2022-08-02 07:55:12 +00:00
{
description = "home manager config apparently";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpks.follows = "nixpkgs";
2022-08-12 10:14:32 +00:00
};
2022-08-02 07:55:12 +00:00
};
2022-08-12 10:14:32 +00:00
outputs = { self, nixpkgs, home-manager, ... }: {
2022-08-02 07:55:12 +00:00
nixosConfigurations = {
monosodium-glutamate-g = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
# ./host/myhost/configuration.nix
./configuration.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
2022-08-12 10:14:32 +00:00
home-manager.users.jade = { nixosConfig, pkgs, ... }: {
home.sessionVariables.TZ = nixosConfig.time.timeZone;
home.stateVersion = "${nixosConfig.system.stateVersion}";
};
}
2022-08-02 07:55:12 +00:00
];
};
};
};
}