initial config

This commit is contained in:
Matt Nish-Lapidus 2024-09-22 01:15:13 -04:00
parent 75254f922d
commit 1f6aab3200
2 changed files with 9 additions and 14 deletions

View file

@ -15,20 +15,16 @@
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
home-manager.users.emenel = import ./home.nix;
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
}
];
}; };
}; };
homeConfigurations = {
"emenel" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
modules = [ ./home.nix ];
};
};
}; };
} }

View file

@ -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