Compare commits

...

2 Commits

Author SHA1 Message Date
uttarayan21
0dda14266d feat(configuration): enable Nix and upgrade system state version
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
2025-12-06 03:42:04 +05:30
uttarayan21
0b1924359e feat(gtk): force dark color scheme for ryu device 2025-12-06 03:36:58 +05:30
5 changed files with 11 additions and 6 deletions

View File

@@ -8,7 +8,7 @@
# environment.systemPackages = with pkgs; [nix neovim];
nix = {
enable = false;
enable = true;
settings = {
experimental-features = "nix-command flakes auto-allocate-uids";
max-jobs = 8;
@@ -77,7 +77,7 @@
# services.nix-daemon.enable = true;
system.primaryUser = "servius";
system.stateVersion = 4;
system.stateVersion = 5;
system.keyboard.enableKeyMapping = true;
system.keyboard.remapCapsLockToControl = true;

View File

@@ -7,6 +7,7 @@
lib.optionalAttrs (device.is "ryu") {
gtk = {
enable = device.is "ryu";
colorScheme = lib.mkForce "dark";
theme = {
name = "catppuccin-mocha-mauve-standard+normal";
package = pkgs.catppuccinThemes.gtk;
@@ -38,5 +39,7 @@ lib.optionalAttrs (device.is "ryu") {
# pkgs.catppuccinThemes.gtk
pkgs.catppuccinThemes.papirus-folders
];
# stylix.targets.gtk.enable = false;
stylix.targets.gtk.enable = false;
stylix.targets.gnome.enable = false;
}

View File

@@ -25,7 +25,7 @@
nautilus
totem
ffmpegthumbnailer
polkit_gnome
# polkit_gnome
seahorse
signal-desktop
# sony-headphones-client

View File

@@ -8,11 +8,13 @@ lib.optionalAttrs (device.is "ryu") {
xdg.portal = {
enable = pkgs.stdenv.isLinux;
config = {
hyprland.default = ["hyprland" "kde"];
hyprland.default = ["kde" "hyprland"];
common.default = ["*" "hyprland"];
};
extraPortals = with pkgs; [
xdg-desktop-portal-hyprland
kdePackages.xdg-desktop-portal-kde
xdg-desktop-portal-hyprland
xdg-desktop-portal-gtk
];
};
}

View File

@@ -22,7 +22,7 @@
programs = {
hyprland = {
enable = true;
# withUWSM = true;
withUWSM = true;
xwayland.enable = true;
};
};