Compare commits

..

No commits in common. "d08dd1bed05048a843a06f6575a78b7f9bd8b92d" and "9df8ef4fe74f5c41aeb33d6e279437a9fda0f83a" have entirely different histories.

4 changed files with 18 additions and 18 deletions

View File

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

View File

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

View File

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