remove gtk stuff

This commit is contained in:
gpskwlkr 2024-03-27 23:57:16 +04:00
parent 76f1a964ae
commit 8f13d0a017
13 changed files with 9 additions and 90 deletions

View file

@ -3,6 +3,4 @@ exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESK
exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
exec-once = waybar & hyprpaper
exec-once = swayidle -w
exec-once = nwg-look -a
exec-once = hyprctl setcursor Catppuccin-Macchiato-Teal 24

View file

@ -3,23 +3,16 @@
gtk = {
enable = true;
cursorTheme = {
name = "Catppuccin-Macchiato-Teal";
package = pkgs.catppuccin-gtk;
};
gtk3.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme = 1;
gtk-cursor-theme-name=Catppuccin-Macchiato-Teal
'';
};
gtk4.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme = 1;
gtk-cursor-theme-name=Catppuccin-Macchiato-Teal
'';
'';
};
};
}

View file

@ -45,13 +45,13 @@
# Gaming
pkgs.steam
pkgs.steam-run
pkgs.yuzu-mainline
(pkgs.lutris.override {
extraPkgs = pkgs: [
pkgs.wineWowPackages.stable
pkgs.winetricks
];
})
pkgs.yuzu-mainline
# Downloads
pkgs.qbittorrent

View file

@ -23,6 +23,13 @@
fsType = "vfat";
};
fileSystems."/home/gpskwlkr/HDD" =
{
device = "/dev/disk/by-uuid/5ffff838-c04f-4a9b-aa5c-b985e52b6993";
fsType = "ext4";
options = [ "defaults,noatime" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/ed488302-476e-4bc2-8516-1ce11271b0dc"; }
];

View file

@ -23,7 +23,6 @@
# };
boot.loader.systemd-boot.enable = lib.mkForce false;
boot.initrd.kernelModules = [ "amdgpu" ];
boot.lanzaboote = {
enable = true;

View file

@ -13,15 +13,12 @@
./nixsettings.nix
./packages.nix
./polkit.nix
./programming.nix
./programs.nix
./security.nix
./services.nix
./sound.nix
./theme.nix
./time.nix
./users.nix
./virtualisation.nix
./work.nix
];
}

View file

@ -10,8 +10,4 @@
trusted-public-keys = ["nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="];
};
};
environment.systemPackages = with pkgs; [
];
}

View file

@ -10,7 +10,6 @@
kitty
libnotify
mako
nwg-look
qt5.qtwayland
qt6.qtwayland
swayidle
@ -19,6 +18,5 @@
wl-clipboard
wofi
waybar
xfce.thunar
];
}

View file

@ -1,7 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
];
}

View file

@ -15,7 +15,6 @@
displayManager = {
sddm.enable = true;
};
videoDrivers = [ "amdgpu" ];
};
};
}

View file

@ -1,51 +0,0 @@
{ pkgs, ... }:
{
# Enable Theme
environment.variables.GTK_THEME = "Catppuccin-Macchiato-Standard-Teal-Dark";
environment.variables.XCURSOR_THEME = "Catppuccin-Macchiato-Teal";
environment.variables.XCURSOR_SIZE = "24";
console = {
earlySetup = true;
colors = [
"24273a"
"ed8796"
"a6da95"
"eed49f"
"8aadf4"
"f5bde6"
"8bd5ca"
"cad3f5"
"5b6078"
"ed8796"
"a6da95"
"eed49f"
"8aadf4"
"f5bde6"
"8bd5ca"
"a5adcb"
];
};
# Override packages
nixpkgs.config.packageOverrides = pkgs: {
colloid-icon-theme = pkgs.colloid-icon-theme.override { colorVariants = ["teal"]; };
catppuccin-gtk = pkgs.catppuccin-gtk.override {
accents = [ "teal" ]; # You can specify multiple accents here to output multiple themes
size = "standard";
variant = "macchiato";
};
discord = pkgs.discord.override {
withOpenASAR = true;
withTTS = true;
};
};
environment.systemPackages = with pkgs; [
catppuccin-cursors.macchiatoTeal
catppuccin-gtk
catppuccin-kvantum
colloid-icon-theme
numix-icon-theme-circle
];
}

View file

@ -12,8 +12,5 @@ users.users.gpskwlkr = {
"networkmanager"
"docker"
];
packages = with pkgs; [
];
};
}

View file

@ -1,7 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
];
}