Compare commits

...

3 Commits

Author SHA1 Message Date
d08dd1bed0 move config to hosts dir 2025-06-28 13:03:17 +00:00
c071661133 nh flake config 2025-06-28 10:37:50 +00:00
41eba104ac vim alias to nvim 2025-06-28 10:15:32 +00:00
4 changed files with 18 additions and 18 deletions

View File

@ -30,10 +30,10 @@
{ {
nixosConfigurations = { nixosConfigurations = {
nixos = nixpkgs.lib.nixosSystem { desktop1 = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs system; }; specialArgs = { inherit inputs system; };
modules = [ modules = [
./configuration.nix ./hosts/desktop1/configuration.nix
nix-flatpak.nixosModules.nix-flatpak nix-flatpak.nixosModules.nix-flatpak
inputs.stylix.nixosModules.stylix inputs.stylix.nixosModules.stylix
nvf.nixosModules.default nvf.nixosModules.default

View File

@ -6,9 +6,9 @@
./hardware-configuration.nix ./hardware-configuration.nix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
./modules/nix/pipewire.nix ../../modules/nix/pipewire.nix
./modules/nix/locales.nix ../../modules/nix/locales.nix
./modules/nix/nvidia.nix ../../modules/nix/nvidia.nix
]; ];
home-manager = { home-manager = {
@ -37,7 +37,7 @@
} }
''; '';
networking.hostName = "nixos"; networking.hostName = "desktop1";
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
users.users.smayzy = { users.users.smayzy = {
@ -164,7 +164,7 @@
programs.nh = { programs.nh = {
enable = true; enable = true;
clean.enable = true; clean.enable = true;
clean.extraArgs = "--keepsince 30d --keep 10"; clean.extraArgs = "--keep-since 30d --keep 10";
flake = "/home/smayzy/nix-config"; flake = "/home/smayzy/nix-config";
}; };
@ -173,7 +173,7 @@
settings = { settings = {
vim = { vim = {
viAlias = false; viAlias = false;
vimAlias = false; vimAlias = true;
lsp = { lsp = {
enable = true; enable = true;
}; };

View File

@ -3,8 +3,8 @@
{ {
imports = imports =
[ [
./modules/home-manager/webapps.nix ../../modules/home-manager/webapps.nix
./modules/home-manager/lf/lf.nix ../../modules/home-manager/lf/lf.nix
]; ];
home.username = "smayzy"; home.username = "smayzy";
@ -16,40 +16,40 @@
home.file = { home.file = {
".config/fastfetch" = { ".config/fastfetch" = {
source = builtins.toPath ./dotfiles/fastfetch; source = builtins.toPath ../../dotfiles/fastfetch;
recursive = true; recursive = true;
force = true; force = true;
}; };
".config/kitty/kitty.conf" = { ".config/kitty/kitty.conf" = {
source = builtins.toPath ./dotfiles/kitty.conf; source = builtins.toPath ../../dotfiles/kitty.conf;
force = true; force = true;
}; };
".config/hypr" = { ".config/hypr" = {
source = builtins.toPath ./dotfiles/hypr-desk; source = builtins.toPath ../../dotfiles/hypr-desk;
recursive = true; recursive = true;
force = true; force = true;
}; };
".config/mako/config" = { ".config/mako/config" = {
source = builtins.toPath ./dotfiles/mako/config; source = builtins.toPath ../../dotfiles/mako/config;
force = true; force = true;
}; };
".config/waybar" = { ".config/waybar" = {
source = builtins.toPath ./dotfiles/waybar-desk; source = builtins.toPath ../../dotfiles/waybar-desk;
recursive = true; recursive = true;
force = true; force = true;
}; };
".config/wofi" = { ".config/wofi" = {
source = builtins.toPath ./dotfiles/wofi; source = builtins.toPath ../../dotfiles/wofi;
recursive = true; recursive = true;
force = true; force = true;
}; };
".config/wlogout" = { ".config/wlogout" = {
source = builtins.toPath ./dotfiles/wlogout-desk; source = builtins.toPath ../../dotfiles/wlogout-desk;
recursive = true; recursive = true;
force = true; force = true;
}; };
"wallpaper" = { "wallpaper" = {
source = builtins.toPath ./wallpapers; source = builtins.toPath ../../wallpapers;
recursive = true; recursive = true;
force = true; force = true;
}; };