mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 04:13:55 -05:00
simplified directory structure
This commit is contained in:
parent
7440aff708
commit
8319ab8a9b
|
@ -3,7 +3,7 @@
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ # Include X settings.
|
[ # Include X settings.
|
||||||
../.
|
../common.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable Gnome and GDM.
|
# Enable Gnome and GDM.
|
||||||
|
|
|
@ -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.
|
|
@ -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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -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
|
|
@ -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 =
|
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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./virtualization
|
./virtualization.nix
|
||||||
./reverse_proxy
|
./nginx_proxy.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# services.ddclient.enable = true;
|
# services.ddclient.enable = true;
|
||||||
|
|
|
@ -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";
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
Loading…
Reference in a new issue