summaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-11-08 13:32:13 -0500
committerAndrew <admonty1@protonmail.com>2025-11-08 13:32:13 -0500
commit0f94e226637a238d33f7c6e5b359b6b65f733a70 (patch)
treef96247b83017df08a7561b4543129e347c0b84a2 /flake.nix
parenttodo (diff)
downloadnixos-0f94e226637a238d33f7c6e5b359b6b65f733a70.tar.gz
nixos-0f94e226637a238d33f7c6e5b359b6b65f733a70.tar.bz2
nixos-0f94e226637a238d33f7c6e5b359b6b65f733a70.zip
dotfile managment
Diffstat (limited to '')
-rw-r--r--flake.nix18
1 files changed, 3 insertions, 15 deletions
diff --git a/flake.nix b/flake.nix
index 801ffa7..7ee6bf4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;
};
}