This commit is contained in:
Dennis Schoepf 2026-03-03 23:36:01 +00:00
parent 22fecee528
commit 07893685e2
3 changed files with 28 additions and 19 deletions

View file

@ -1,4 +1,4 @@
{ ... }: { inputs, ... }:
{ {
flake.modules.nixos.desktop = flake.modules.nixos.desktop =
{ pkgs, ... }: { pkgs, ... }:
@ -31,6 +31,14 @@
defaultFonts.monospace = [ "VictorMono Nerd Font Mono" ]; defaultFonts.monospace = [ "VictorMono Nerd Font Mono" ];
}; };
home-manager.sharedModules = [
inputs.self.modules.homeManager.desktop
];
};
flake.modules.homeManager.desktop =
{ pkgs, ... }:
{
gtk = { gtk = {
enable = true; enable = true;
cursorTheme = { cursorTheme = {

View file

@ -21,6 +21,7 @@ in
desktop desktop
terminal terminal
gaming gaming
browser
{ {
imports = [ ./_hardware-configuration.nix ]; imports = [ ./_hardware-configuration.nix ];

View file

@ -20,14 +20,8 @@
}; };
flake.modules.homeManager.neovim = { pkgs, ... }: { flake.modules.homeManager.neovim = { pkgs, ... }: {
imports = [ inputs.nixvim.homeModules.nixvim ];
programs.nixvim = {
enable = true;
defaultEditor = true;
package = pkgs.neovim-unwrapped;
vimAlias = true;
vimdiffAlias = true;
imports = [ imports = [
inputs.nixvim.homeModules.nixvim
./_colorscheme.nix ./_colorscheme.nix
./_completion.nix ./_completion.nix
./_editing.nix ./_editing.nix
@ -37,6 +31,12 @@
./_options.nix ./_options.nix
./_picker.nix ./_picker.nix
]; ];
programs.nixvim = {
enable = true;
defaultEditor = true;
package = pkgs.neovim-unwrapped;
vimAlias = true;
vimdiffAlias = true;
}; };
}; };
} }