Compare commits
No commits in common. "d08dd1bed05048a843a06f6575a78b7f9bd8b92d" and "9df8ef4fe74f5c41aeb33d6e279437a9fda0f83a" have entirely different histories.
d08dd1bed0
...
9df8ef4fe7
@ -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 = "desktop1";
|
networking.hostName = "nixos";
|
||||||
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 = "--keep-since 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 = true;
|
vimAlias = false;
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
@ -30,10 +30,10 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
desktop1 = nixpkgs.lib.nixosSystem {
|
nixos = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs system; };
|
specialArgs = { inherit inputs system; };
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/desktop1/configuration.nix
|
./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
|
||||||
|
|||||||
@ -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;
|
||||||
};
|
};
|
||||||
Loading…
Reference in New Issue
Block a user