commented home config in flake

This commit is contained in:
Steven 2023-03-26 15:06:04 -04:00
parent 00105229a0
commit 5764ac1119

View file

@ -7,8 +7,8 @@
# NixOS Hardware Configuration for framework # # NixOS Hardware Configuration for framework #
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";
# For Wayfire # # For Wayfire #
# nixpkgs-wayland = { # nixpkgs-wayland = {
# url = "github:nix-community/nixpkgs-wayland"; # url = "github:nix-community/nixpkgs-wayland";
# inputs.nixpkgs.follows = "nixpkgs"; # inputs.nixpkgs.follows = "nixpkgs";
# }; # };
# For Home Manager # # For Home Manager #
@ -33,7 +33,7 @@
config.allowUnfree = true; config.allowUnfree = true;
}; };
defaultPackage.x86_64-linux = home-manager.defaultPackage.x86_64-linux; defaultPackage.x86_64-linux = home-manager.defaultPackage.x86_64-linux;
defaultNixOptions = { defaultNixOptions = {
nix.autoOptimiseStore = true; nix.autoOptimiseStore = true;
}; };
@ -82,12 +82,12 @@
] #modules to load ] #modules to load
[]; #modules to be loaded by home-manager []; #modules to be loaded by home-manager
}; };
homeConfigurations = { # homeConfigurations = {
speccon18 = home-manager.lib.homeManagerConfiguration { # speccon18 = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux; # pkgs = nixpkgs.legacyPackages.x86_64-linux;
modules = [ ./.hm-modules/home-manager.nix]; # modules = [ ./.hm-modules/home-manager.nix];
}; # };
}; # };
}; };
} }