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