This commit is contained in:
alex 2023-06-17 16:46:54 -04:00
parent ea762a3958
commit b47afee3cf
4 changed files with 3 additions and 3 deletions

View File

@ -11,6 +11,7 @@
discord
firefox
git
gnucash
keepassxc
lutris
mpv

View File

@ -11,11 +11,12 @@
nixosConfigurations.nixos76 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
./system/configuration.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.alex = import ./home.nix;
# Optionally, use home-manager.extraSpecialArgs to pass
# arguments to home.nix
}

View File

@ -109,8 +109,6 @@
extraGroups = [ "wheel" "networkmanager" ]; # Enable sudo for the user.
};
home-manager.users.alex = import ./home.nix;
fileSystems."/home/alex/Documents" = {
device = "/media/external/Documents";
options = [ "bind" ];