mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 15:13:55 -05:00
simplified directory structure
This commit is contained in:
parent
7440aff708
commit
8319ab8a9b
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
imports =
|
||||
[ # Include X settings.
|
||||
../.
|
||||
../common.nix
|
||||
];
|
||||
|
||||
# Enable Gnome and GDM.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
imports =
|
||||
[ # Include X settings.
|
||||
../.
|
||||
./common.nix
|
||||
];
|
||||
|
||||
# Enable the KDE Plasma Desktop Environment.
|
|
@ -59,7 +59,7 @@
|
|||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/rustboro
|
||||
./desktop/kde
|
||||
./desktop/kde.nix
|
||||
home-manager-unstable.nixosModules.home-manager
|
||||
nixos-hardware.nixosModules.lenovo-thinkpad-t440p
|
||||
];
|
||||
|
@ -84,7 +84,7 @@
|
|||
./hosts/mauville
|
||||
./desktop/gnome
|
||||
./modules/homelab
|
||||
./modules/steam
|
||||
./modules/steam.nix
|
||||
home-manager-unstable.nixosModules.home-manager
|
||||
];
|
||||
};
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
../common.nix
|
||||
./common.nix
|
||||
];
|
||||
|
||||
# TODO please change the username & home directory to your own
|
|
@ -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
|
||||
];
|
||||
}
|
|
@ -6,7 +6,7 @@
|
|||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../users/aly
|
||||
../../users/aly.nix
|
||||
../../system
|
||||
];
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../users/aly
|
||||
../../users/aly.nix
|
||||
../../system
|
||||
];
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ in {
|
|||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../users/aly
|
||||
../../users/aly.nix
|
||||
../../system
|
||||
];
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../users/aly
|
||||
../../users/aly.nix
|
||||
../../system
|
||||
];
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./virtualization
|
||||
./reverse_proxy
|
||||
./virtualization.nix
|
||||
./nginx_proxy.nix
|
||||
];
|
||||
|
||||
# services.ddclient.enable = true;
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
{
|
||||
imports =
|
||||
[
|
||||
./network
|
||||
./sound
|
||||
./network.nix
|
||||
./sound.nix
|
||||
];
|
||||
# Set your time zone.
|
||||
time.timeZone = "America/New_York";
|
||||
|
|
|
@ -8,5 +8,5 @@
|
|||
extraGroups = [ "networkmanager" "wheel" "docker" "libvirtd" ];
|
||||
};
|
||||
|
||||
home-manager.users.aly = import ../../home/aly;
|
||||
home-manager.users.aly = import ../home/aly.nix;
|
||||
}
|
Loading…
Reference in a new issue