mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:43:56 -05:00
petalburg: added dustin, switched to gnome
This commit is contained in:
parent
db4ee6b191
commit
945e50e641
12
home/dustin-gnome.nix
Normal file
12
home/dustin-gnome.nix
Normal 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;
|
||||||
|
}
|
|
@ -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
10
users/dustin.nix
Normal 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" ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue