Compare commits

..

3 Commits

Author SHA1 Message Date
mir
4bef39f6c2 add packages for partitioning 2024-02-27 09:58:26 -09:00
mir
db7efac024 fix hostname name 2024-02-27 09:52:33 -09:00
mir
4ef52b8226 separate hostnames into flake 2024-02-27 09:51:13 -09:00
2 changed files with 9 additions and 3 deletions

View File

@ -18,7 +18,7 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "starscream"; # Define your hostname.
# networking.hostName = "starscream"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
@ -105,6 +105,8 @@
# thunderbird
git
zsh
gparted
ntfs3g
];
};
# home-manager.users.mir = { pkgs, ... }: {

View File

@ -12,7 +12,9 @@
starscream = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
./configuration.nix {
networking.hostName = "starscream";
}
./hardware/starscream-hw.nix
home-manager.nixosModules.home-manager
{
@ -26,7 +28,9 @@
knockout = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
./configuration.nix {
networking.hostName = "knockout";
}
./hardware/knockout-hw.nix
home-manager.nixosModules.home-manager
{