remove old hosts

This commit is contained in:
Miguel Palhas
2025-07-03 22:39:37 +01:00
parent e08defd4f4
commit bfaf0d46d9
2 changed files with 0 additions and 46 deletions
-5
View File
@@ -99,17 +99,12 @@
{
nixosConfigurations = {
arrakis = mkNixOS "arrakis";
trantor = mkNixOS "trantor";
desktop = mkNixOS "desktop";
pi = mkNixOS "pi";
live = mkNixOS "live";
};
homeConfigurations = {
arrakis = mkHome "arrakis" x86;
trantor = mkHome "trantor" x86;
desktop = mkHome "desktop" x86;
pi = mkHome "pi" aarch64;
};
devShells =
-41
View File
@@ -1,41 +0,0 @@
{
inputs,
lib,
pkgs,
config,
outputs,
...
}:
{
imports = [
inputs.nix-colors.homeManagerModule
inputs.nixvim.homeManagerModules.nixvim
../common/programs/default.nix
../common/programs/desktop
../common/programs/hyprland
../common/programs/syncthing.nix
../common/features/xdg.nix
../common/features/bluetooth.nix
];
home.sessionVariables = {
LIBVA_DRIVER_NAME = "nvidia";
GDM_BACKEND = "nvidia-drm";
__GLX_VENDOR_LIBRARY_NAME = "nvidia";
};
wayland.windowManager.hyprland.settings = {
monitor = [ "eDP-1, preferred, 0x1080, 1, bitdepth, 8" ];
windowrulev2 = [
"float, class:thunar"
"move cursor -50% -50%, class:thunar"
"size 800 600, class:thunar"
];
};
home = {
username = lib.mkDefault "naps62";
stateVersion = lib.mkDefault "24.05";
};
}