This commit is contained in:
Kyler Olsen 2025-05-07 17:04:51 -06:00
parent cdc03c1aec
commit 995b1b5759
2 changed files with 15 additions and 15 deletions

View File

@ -62,7 +62,7 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. vim
wget wget
micro micro
git git

View File

@ -13,21 +13,21 @@
lib = nixpkgs.lib; lib = nixpkgs.lib;
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
in{ in {
nixosConfigurations = { nixosConfigurations = {
nixos-ytd = lib.nixosSystem { nixos-ytd = lib.nixosSystem {
inherit system; inherit system;
modules = [ ./configuration.nix ]; modules = [ ./configuration.nix ];
}; };
}; };
homeConfigurations = {
kyler = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
};
};
homeConfigurations = {
kyler = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
};
};
}; };
} }