We do a little refactoring + plasma theming
This commit is contained in:
parent
05b36550a3
commit
39dd3f47c8
22 changed files with 257 additions and 397 deletions
6
modules/home-manager/default.nix
Normal file
6
modules/home-manager/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Collection of reusable home-manager modules (https://nixos.wiki/wiki/Module)
|
||||
# These shouldn't include personal configurations, but much rather stuff that can be shared across multiple configurations
|
||||
{
|
||||
# List your module files here
|
||||
# my-module = import ./my-module.nix;
|
||||
}
|
1
modules/home-manager/themes/qt_catppuccin-macchiato.nix
Normal file
1
modules/home-manager/themes/qt_catppuccin-macchiato.nix
Normal file
|
@ -0,0 +1 @@
|
|||
|
6
modules/nixos/default.nix
Normal file
6
modules/nixos/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Collection of reusable nixos modules (https://nixos.wiki/wiki/Module)
|
||||
# These shouldn't include personal configurations, but much rather stuff that can be shared across multiple configurations
|
||||
{
|
||||
# List your module files here
|
||||
# my-module = import ./my-module.nix;
|
||||
}
|
14
modules/nixos/desktop/gnome.nix
Normal file
14
modules/nixos/desktop/gnome.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
inputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
# Enable the X11 windowing system.
|
||||
services.xserver.enable = true;
|
||||
|
||||
# Enable the GNOME Desktop Environment.
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
}
|
19
modules/nixos/desktop/kde.nix
Normal file
19
modules/nixos/desktop/kde.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
inputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
# Enable the x11 windowing system
|
||||
services.xserver.enable = true;
|
||||
|
||||
# Enable the SDDM display manager.
|
||||
services.displayManager.sddm.enable = true;
|
||||
|
||||
# Enable the KDE Plasma 6 desktop environment.
|
||||
services.desktopManager.plasma6.enable = true;
|
||||
|
||||
# Enable KDE-Connect
|
||||
programs.kdeconnect.enable = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue