refactor
This commit is contained in:
parent
ea762a3958
commit
b47afee3cf
|
@ -11,6 +11,7 @@
|
||||||
discord
|
discord
|
||||||
firefox
|
firefox
|
||||||
git
|
git
|
||||||
|
gnucash
|
||||||
keepassxc
|
keepassxc
|
||||||
lutris
|
lutris
|
||||||
mpv
|
mpv
|
|
@ -11,11 +11,12 @@
|
||||||
nixosConfigurations.nixos76 = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.nixos76 = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
./configuration.nix
|
./system/configuration.nix
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
home-manager.useUserPackages = true;
|
home-manager.useUserPackages = true;
|
||||||
|
home-manager.users.alex = import ./home.nix;
|
||||||
# Optionally, use home-manager.extraSpecialArgs to pass
|
# Optionally, use home-manager.extraSpecialArgs to pass
|
||||||
# arguments to home.nix
|
# arguments to home.nix
|
||||||
}
|
}
|
||||||
|
|
|
@ -109,8 +109,6 @@
|
||||||
extraGroups = [ "wheel" "networkmanager" ]; # Enable ‘sudo’ for the user.
|
extraGroups = [ "wheel" "networkmanager" ]; # Enable ‘sudo’ for the user.
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager.users.alex = import ./home.nix;
|
|
||||||
|
|
||||||
fileSystems."/home/alex/Documents" = {
|
fileSystems."/home/alex/Documents" = {
|
||||||
device = "/media/external/Documents";
|
device = "/media/external/Documents";
|
||||||
options = [ "bind" ];
|
options = [ "bind" ];
|
Loading…
Reference in New Issue