reorganized flake.nix and added pettalburg host

This commit is contained in:
Aly Raffauf 2024-02-29 21:27:10 -05:00
parent 0ec552b7f1
commit e32002336e

View file

@ -19,7 +19,8 @@
outputs = inputs@{ nixpkgs, nix-flatpak, home-manager, nixos-hardware, ... }: { outputs = inputs@{ nixpkgs, nix-flatpak, home-manager, nixos-hardware, ... }: {
nixosConfigurations = { nixosConfigurations = {
# TODO please change the hostname to your own
# T440p with i5-4210M and 16GB RAM.
rustboro = nixpkgs.lib.nixosSystem { rustboro = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
@ -40,25 +41,27 @@
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
# TODO replace aly with your own username
home-manager.users.aly = import ./home/aly; home-manager.users.aly = import ./home/aly;
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix # Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
} }
# nixos-hardware configuration for t440p # nixos-hardware configuration for t440p
nixos-hardware.nixosModules.lenovo-thinkpad-t440p nixos-hardware.nixosModules.lenovo-thinkpad-t440p
]; ];
}; };
aly-yoga9i = nixpkgs.lib.nixosSystem {
# Lenovo Yoga 9i with i7-1360P and 16GB RAM.
petalburg = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./configuration.nix ./hosts/petalburg
./nix ./nix
./flatpak ./flatpak
./hardware/sound ./hardware
./network ./network
./desktop/gnome ./desktop/gnome
./programs/podman
./programs/steam
./programs/via-qmk
nix-flatpak.nixosModules.nix-flatpak nix-flatpak.nixosModules.nix-flatpak
# make home-manager as a module of nixos # make home-manager as a module of nixos
@ -67,9 +70,7 @@
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.aly = import ./users/aly.nix; home-manager.users.aly = import ./users/aly.nix;
} }
]; ];
}; };