petalburg: added dustin, switched to gnome

This commit is contained in:
Aly Raffauf 2024-03-26 20:13:35 -04:00
parent db4ee6b191
commit 945e50e641
3 changed files with 26 additions and 2 deletions

12
home/dustin-gnome.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
imports = [ ./gnome ./common-gui.nix ];
home.username = "dustin";
home.homeDirectory = "/home/dustin";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
services.syncthing.enable = true;
}

View file

@ -54,11 +54,12 @@ let
in { in {
imports = [ imports = [
# ../../modules/kde.nix # ../../modules/kde.nix
../../modules/hyprland.nix ../../modules/gnome
../../modules/plymouth.nix ../../modules/plymouth.nix
../../modules/zram_swap.nix ../../modules/zram_swap.nix
../../system ../../system
../../users/aly.nix ../../users/aly.nix
../../users/dustin.nix
./hardware-configuration.nix # Include the results of the hardware scan. ./hardware-configuration.nix # Include the results of the hardware scan.
]; ];
@ -76,7 +77,8 @@ in {
powerManagement.powertop.enable = true; powerManagement.powertop.enable = true;
services.thermald.enable = true; services.thermald.enable = true;
home-manager.users.aly = import ../../home/aly-hyprland.nix; home-manager.users.aly = import ../../home/aly-gnome.nix;
home-manager.users.dustin = import ../../home/dustin-gnome.nix;
environment.systemPackages = [ cs-adjuster cs-adjuster-plasma pp-adjuster ]; environment.systemPackages = [ cs-adjuster cs-adjuster-plasma pp-adjuster ];

10
users/dustin.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.dustin = {
isNormalUser = true;
description = "Dustin Raffauf";
extraGroups = [ "networkmanager" "wheel" "docker" "libvirtd" "video" ];
};
}