aboutsummaryrefslogtreecommitdiff
path: root/home/profiles
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-12-31 11:26:08 -0800
committerFranck Cuny <franck@fcuny.net>2025-12-31 11:26:08 -0800
commit94655522818b21970badfa1c698759bd9338005c (patch)
treefea9b0a13a83af3ef9a2feb58d993f45596d3215 /home/profiles
parentcgroups is included in all nixos (diff)
downloadinfra-94655522818b21970badfa1c698759bd9338005c.tar.gz
a working niri + noctalia environment
Diffstat (limited to 'home/profiles')
-rw-r--r--home/profiles/workstation.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/home/profiles/workstation.nix b/home/profiles/workstation.nix
new file mode 100644
index 0000000..dbe9c92
--- /dev/null
+++ b/home/profiles/workstation.nix
@@ -0,0 +1,46 @@
+{ pkgs, ... }:
+{
+ imports = [
+ ../programs/desktop/niri.nix
+ ../programs/desktop/noctalia.nix
+ ../programs/media/mpv.nix
+ ../programs/term/kitty.nix
+ ];
+
+ home.packages = with pkgs; [
+ arc-icon-theme
+ nautilus
+ nordic
+ nordzy-cursor-theme
+ xdg-utils
+ ];
+
+ xdg.enable = true;
+
+ qt = {
+ enable = true;
+ platformTheme.name = "adwaita";
+ style.name = "adwaita-dark";
+ style.package = pkgs.adwaita-qt;
+ };
+
+ gtk = {
+ enable = true;
+ font = {
+ package = pkgs.roboto;
+ name = "Roboto Medium 11";
+ };
+ cursorTheme = {
+ package = pkgs.nordzy-cursor-theme;
+ name = "Nordzy-cursors";
+ };
+ iconTheme = {
+ package = pkgs.arc-icon-theme;
+ name = "Arc";
+ };
+ theme = {
+ package = pkgs.nordic;
+ name = "Nordic-darker";
+ };
+ };
+}