initial config
This commit is contained in:
parent
75254f922d
commit
1f6aab3200
2 changed files with 9 additions and 14 deletions
22
flake.nix
22
flake.nix
|
@ -15,20 +15,16 @@
|
|||
nixosConfigurations = {
|
||||
thegibson = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./configuration.nix
|
||||
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
|
||||
# TODO replace ryan with your own username
|
||||
home-manager.users.emenel = import ./home.nix;
|
||||
|
||||
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
|
||||
}
|
||||
];
|
||||
modules = [ ./configuration.nix ];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
homeConfigurations = {
|
||||
"emenel" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
modules = [ ./home.nix ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
1
home.nix
1
home.nix
|
@ -10,7 +10,6 @@
|
|||
fzf
|
||||
bat
|
||||
jq
|
||||
rg
|
||||
];
|
||||
|
||||
# This needs to actually be set to your username
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue