update config

This commit is contained in:
dim
2025-01-04 18:51:16 +07:00
parent 376adaf654
commit 42f4e1a69a
16 changed files with 265 additions and 450 deletions

View File

@@ -1,4 +1,4 @@
{ config, ... }: {
{ config, pkgs, ... }: {
imports = [
# ../../nixos/nvidia.nix # CHANGEME: Remove this line if you don't have an Nvidia GPU
# ../../nixos/prime.nix # CHANGEME: Remove this line if you don't have an Nvidia GPU
@@ -28,9 +28,6 @@
home-manager.users."${config.var.username}" = import ./home.nix;
home-manager.sharedModules =
[{ stylix.targets.gtk.flatpakSupport.enable = false; }];
# users.users."${config.var.username}".extraGroups = [ "scanner" "lp" ];
# hardware.sane.enable = true;

View File

@@ -6,7 +6,6 @@
# Programs
../../home/programs/kitty
../../home/programs/nvim
# ../../home/programs/qutebrowser
../../home/programs/shell
../../home/programs/pass
../../home/programs/fetch
@@ -29,18 +28,26 @@
../../home/system/hyprlock
../../home/system/hyprpanel
../../home/system/hyprpaper
../../home/system/gtk
../../home/system/wofi
../../home/system/batsignal
../../home/system/zathura
../../home/system/mime
../../home/system/udiskie
../../home/system/clipman
../../home/system/tofi
# ./secrets # CHANGEME: You should probably remove this line, this is where I store my secrets
];
stylix = {
targets.gtk.flatpakSupport.enable = false;
iconTheme = {
enable = true;
package = pkgs.tela-icon-theme;
dark = "Tela-dark";
light = "Tela-light";
};
};
home = {
inherit (config.var) username;
homeDirectory = "/home/" + config.var.username;