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
-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";
};
}