simplified directory structure

This commit is contained in:
Aly Raffauf 2024-03-13 13:28:54 -04:00
parent 7440aff708
commit 8319ab8a9b
18 changed files with 14 additions and 37 deletions

View file

@ -3,7 +3,7 @@
{ {
imports = imports =
[ # Include X settings. [ # Include X settings.
../. ../common.nix
]; ];
# Enable Gnome and GDM. # Enable Gnome and GDM.

View file

@ -3,7 +3,7 @@
{ {
imports = imports =
[ # Include X settings. [ # Include X settings.
../. ./common.nix
]; ];
# Enable the KDE Plasma Desktop Environment. # Enable the KDE Plasma Desktop Environment.

View file

@ -59,7 +59,7 @@
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./hosts/rustboro ./hosts/rustboro
./desktop/kde ./desktop/kde.nix
home-manager-unstable.nixosModules.home-manager home-manager-unstable.nixosModules.home-manager
nixos-hardware.nixosModules.lenovo-thinkpad-t440p nixos-hardware.nixosModules.lenovo-thinkpad-t440p
]; ];
@ -84,7 +84,7 @@
./hosts/mauville ./hosts/mauville
./desktop/gnome ./desktop/gnome
./modules/homelab ./modules/homelab
./modules/steam ./modules/steam.nix
home-manager-unstable.nixosModules.home-manager home-manager-unstable.nixosModules.home-manager
]; ];
}; };

View file

@ -2,7 +2,7 @@
{ {
imports = [ imports = [
../common.nix ./common.nix
]; ];
# TODO please change the username & home directory to your own # TODO please change the username & home directory to your own

View file

@ -1,23 +0,0 @@
{ config, pkgs, ... }:
{
imports = [
../common.nix
];
home.username = "nixos";
home.homeDirectory = "/home/nixos";
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
gparted
gnomeExtensions.appindicator
gnomeExtensions.blur-my-shell
gnomeExtensions.gsconnect
gnomeExtensions.light-shell
gnomeExtensions.night-theme-switcher
gnomeExtensions.noannoyance-fork
gnomeExtensions.tailscale-status
gnomeExtensions.tiling-assistant
];
}

View file

@ -6,7 +6,7 @@
imports = imports =
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../../users/aly ../../users/aly.nix
../../system ../../system
]; ];

View file

@ -6,7 +6,7 @@
imports = imports =
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../../users/aly ../../users/aly.nix
../../system ../../system
]; ];

View file

@ -43,7 +43,7 @@ in {
imports = imports =
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../../users/aly ../../users/aly.nix
../../system ../../system
]; ];

View file

@ -6,7 +6,7 @@
imports = imports =
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../../users/aly ../../users/aly.nix
../../system ../../system
]; ];

View file

@ -2,8 +2,8 @@
{ {
imports = [ imports = [
./virtualization ./virtualization.nix
./reverse_proxy ./nginx_proxy.nix
]; ];
# services.ddclient.enable = true; # services.ddclient.enable = true;

View file

@ -3,8 +3,8 @@
{ {
imports = imports =
[ [
./network ./network.nix
./sound ./sound.nix
]; ];
# Set your time zone. # Set your time zone.
time.timeZone = "America/New_York"; time.timeZone = "America/New_York";

View file

@ -8,5 +8,5 @@
extraGroups = [ "networkmanager" "wheel" "docker" "libvirtd" ]; extraGroups = [ "networkmanager" "wheel" "docker" "libvirtd" ];
}; };
home-manager.users.aly = import ../../home/aly; home-manager.users.aly = import ../home/aly.nix;
} }