From cfe4c43887a41e52be4e6472474c0fc3788f86e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Sat, 7 Mar 2026 17:20:41 +0100 Subject: [PATCH 1/6] chore: rename matej-nixos to fw16 --- flake.nix | 2 +- hosts/{matej-nixos => fw16}/configuration.nix | 2 +- hosts/{matej-nixos => fw16}/hardware-configuration.nix | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename hosts/{matej-nixos => fw16}/configuration.nix (98%) rename hosts/{matej-nixos => fw16}/hardware-configuration.nix (100%) diff --git a/flake.nix b/flake.nix index fccbfbc..c77420d 100644 --- a/flake.nix +++ b/flake.nix @@ -69,7 +69,7 @@ lib = my-lib; nixosConfigurations = { - matej-nixos = mkHost "matej-nixos" { + fw16 = mkHost "fw16" { system = "x86_64-linux"; user = "matej"; }; diff --git a/hosts/matej-nixos/configuration.nix b/hosts/fw16/configuration.nix similarity index 98% rename from hosts/matej-nixos/configuration.nix rename to hosts/fw16/configuration.nix index 196775b..a21a8b3 100644 --- a/hosts/matej-nixos/configuration.nix +++ b/hosts/fw16/configuration.nix @@ -64,7 +64,7 @@ in programs.nm-applet.enable = true; networking = { - hostName = "matej-nixos"; + hostName = "fw16"; networkmanager.enable = true; firewall.enable = false; nameservers = [ diff --git a/hosts/matej-nixos/hardware-configuration.nix b/hosts/fw16/hardware-configuration.nix similarity index 100% rename from hosts/matej-nixos/hardware-configuration.nix rename to hosts/fw16/hardware-configuration.nix From 19766372b861bd7082dfa2afcb9336fa1ba02c19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Sat, 7 Mar 2026 17:21:42 +0100 Subject: [PATCH 2/6] chore: blame ignore cfe4c43887a41e52be4e6472474c0fc3788f86e8 --- .git-blame-ignore-revs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index 3735105..edbadf6 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -1,3 +1,6 @@ # nix fmt & statix f011c8d71ba09bd94ab04b8d771858b90a03fbf9 3aff25b4486a143cd6282f8845c16216598e1c7e + +# host rename +cfe4c43887a41e52be4e6472474c0fc3788f86e8 From bebb7c42bbe87fe041b53189e78a4553e8c08666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Sat, 7 Mar 2026 17:24:34 +0100 Subject: [PATCH 3/6] chore: rename matej-tower to tower --- flake.nix | 2 +- hosts/{matej-tower => tower}/configuration.nix | 2 +- hosts/{matej-tower => tower}/hardware-configuration.nix | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename hosts/{matej-tower => tower}/configuration.nix (97%) rename hosts/{matej-tower => tower}/hardware-configuration.nix (100%) diff --git a/flake.nix b/flake.nix index c77420d..584b4b2 100644 --- a/flake.nix +++ b/flake.nix @@ -73,7 +73,7 @@ system = "x86_64-linux"; user = "matej"; }; - matej-tower = mkHost "matej-tower" { + tower = mkHost "tower" { system = "x86_64-linux"; user = "matej"; }; diff --git a/hosts/matej-tower/configuration.nix b/hosts/tower/configuration.nix similarity index 97% rename from hosts/matej-tower/configuration.nix rename to hosts/tower/configuration.nix index 39b20b2..b70097b 100644 --- a/hosts/matej-tower/configuration.nix +++ b/hosts/tower/configuration.nix @@ -60,7 +60,7 @@ easyeffects ]; - networking.hostName = "matej-tower"; + networking.hostName = "tower"; xdg.mime.defaultApplications = { "application/pdf" = "org.pwmt.zathura.desktop"; diff --git a/hosts/matej-tower/hardware-configuration.nix b/hosts/tower/hardware-configuration.nix similarity index 100% rename from hosts/matej-tower/hardware-configuration.nix rename to hosts/tower/hardware-configuration.nix From c834f65f4727037077141c1899a468d4dd8e9de2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Sat, 7 Mar 2026 17:24:43 +0100 Subject: [PATCH 4/6] chore: blame ignore bebb7c42bbe87fe041b53189e78a4553e8c08666 --- .git-blame-ignore-revs | 1 + 1 file changed, 1 insertion(+) diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index edbadf6..cfb013c 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -4,3 +4,4 @@ f011c8d71ba09bd94ab04b8d771858b90a03fbf9 # host rename cfe4c43887a41e52be4e6472474c0fc3788f86e8 +bebb7c42bbe87fe041b53189e78a4553e8c08666 From 258902d409e68b47f781451e6d306a8e47198d75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Sat, 7 Mar 2026 17:28:12 +0100 Subject: [PATCH 5/6] chore: rename live-iso to iso --- flake.nix | 4 ++-- hosts/{live-iso => iso}/configuration.nix | 0 justfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename hosts/{live-iso => iso}/configuration.nix (100%) diff --git a/flake.nix b/flake.nix index 584b4b2..b3358a2 100644 --- a/flake.nix +++ b/flake.nix @@ -78,8 +78,8 @@ user = "matej"; }; - # nixos-rebuild build-image --image-variant install-iso --flake .#live-iso - live-iso = mkHost "live-iso" { + # nixos-rebuild build-image --image-variant install-iso --flake .#iso + iso = mkHost "iso" { system = "x86_64-linux"; }; }; diff --git a/hosts/live-iso/configuration.nix b/hosts/iso/configuration.nix similarity index 100% rename from hosts/live-iso/configuration.nix rename to hosts/iso/configuration.nix diff --git a/justfile b/justfile index c79400b..8d6764c 100644 --- a/justfile +++ b/justfile @@ -31,7 +31,7 @@ build: # build installation iso iso: - nixos-rebuild build-image --image-variant iso-installer --flake .#live-iso + nixos-rebuild build-image --image-variant iso-installer --flake .#iso # garbage collect old generations clean: From 501606665cda4cb9082fdc870022f057bda06084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Sat, 7 Mar 2026 17:28:21 +0100 Subject: [PATCH 6/6] chore: blame ignore 258902d409e68b47f781451e6d306a8e47198d75 --- .git-blame-ignore-revs | 1 + 1 file changed, 1 insertion(+) diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index cfb013c..5a66886 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -5,3 +5,4 @@ f011c8d71ba09bd94ab04b8d771858b90a03fbf9 # host rename cfe4c43887a41e52be4e6472474c0fc3788f86e8 bebb7c42bbe87fe041b53189e78a4553e8c08666 +258902d409e68b47f781451e6d306a8e47198d75