diff options
| author | Andrew <admonty1@protonmail.com> | 2025-11-08 13:32:13 -0500 |
|---|---|---|
| committer | Andrew <admonty1@protonmail.com> | 2025-11-08 13:32:13 -0500 |
| commit | 0f94e226637a238d33f7c6e5b359b6b65f733a70 (patch) | |
| tree | f96247b83017df08a7561b4543129e347c0b84a2 /flake.nix | |
| parent | todo (diff) | |
| download | nixos-0f94e226637a238d33f7c6e5b359b6b65f733a70.tar.gz nixos-0f94e226637a238d33f7c6e5b359b6b65f733a70.tar.bz2 nixos-0f94e226637a238d33f7c6e5b359b6b65f733a70.zip | |
dotfile managment
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 18 |
1 files changed, 3 insertions, 15 deletions
@@ -11,10 +11,6 @@ url = "github:nix-community/stylix"; inputs.nixpkgs.follows = "nixpkgs"; }; - nvf = { - url = "github:notashelf/nvf"; - }; - schizofox.url = "github:schizofox/schizofox"; nur = { url = "github:nix-community/NUR"; #inputs.nixpkgs.follows = "nixpkgs"; @@ -26,8 +22,6 @@ nixpkgs, home-manager, stylix, - nvf, - schizofox, nur, ... } @ inputs: let @@ -38,13 +32,6 @@ config.allowUnfree = true; overlays = [nur.overlay]; }; - skullNeovim = nvf.lib.neovimConfiguration { - inherit pkgs; - modules = [ - ./neovim.nix - ]; - extraSpecialArgs = {inherit inputs;}; - }; in { nixosConfigurations = { home = lib.nixosSystem { @@ -63,11 +50,12 @@ modules = [ stylix.homeModules.stylix #nur.modules.nixos.default + ./dotfiles.nix ./home.nix + {dotfiles.mutable = true;} ]; - extraSpecialArgs = {inherit inputs skullNeovim;}; + extraSpecialArgs = {inherit inputs;}; }; }; - packages.${system}.skull-neovim = skullNeovim.neovim; }; } |
