summaryrefslogtreecommitdiff
path: root/home/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/flake.nix')
-rw-r--r--home/flake.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/home/flake.nix b/home/flake.nix
deleted file mode 100644
index 766ff99..0000000
--- a/home/flake.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- inputs = {
- nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
- home-manager = {
- url = "github:nix-community/home-manager";
- inputs.nixpkgs.follows = "nixpkgs";
- };
- nur = {
- url = "github:nix-community/NUR";
- inputs.nixpkgs.follows = "nixpkgs";
- };
- nvf = {
- url = "github:notashelf/nvf";
- inputs.nixpkgs.follows = "nixpkgs";
- };
- stylix = {
- url = "github:danth/stylix";
- inputs.nixpkgs.follows = "nixpkgs";
- };
- };
- outputs = {
- nixpkgs,
- home-manager,
- stylix,
- nvf,
- nur,
- ...
- }: let
- system = "x86_64-linux";
- pkgs = nixpkgs.legacyPackages.${system};
- in {
- homeConfigurations."mtgmonkey" = home-manager.lib.homeManagerConfiguration {
- inherit pkgs;
- modules = [
- stylix.homeModules.stylix
- nvf.homeManagerModules.default
- nur.modules.homeManager.default
-
- ./home.nix
- ];
- };
- };
-}