cleanup and fixes

This commit is contained in:
foglar 2024-12-20 16:18:54 +01:00
parent 943e2b61ad
commit 5bda371af0
4 changed files with 12 additions and 3 deletions

View File

@ -54,8 +54,11 @@
shell = "bash"; # bash, zsh
terminal = "kitty";
browser = "librewolf";
editor = "neovim";
theme = "catppuccin-mocha";
# List all themes: $ nix build nixpkgs#base16-schemes && ls result/share/themes
theme = "catppuccin-mocha"; #tokyo-night-dark, one-dark
background = "aurora_borealis.png";
};
@ -79,6 +82,7 @@
in {
nixosConfigurations = {
laptop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit inputs system pkgs pkgs-stable userSettings;
};
@ -91,6 +95,7 @@
];
};
leanix = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit inputs system pkgs pkgs-stable userSettings;
};

View File

@ -13,6 +13,7 @@
home.packages =
(with pkgs; [
librewolf
qutebrowser
ferdium
stellarium

View File

@ -4,8 +4,7 @@
config,
userSettings,
...
}:
{
}: {
options = {
program.git.enable = lib.mkEnableOption "enable git";
};

View File

@ -5,6 +5,9 @@
./packages/steam.nix
./packages/tor.nix
./packages/virtual-machines.nix
./packages/yubikey.nix
./settings/default-applications.nix
];
program = {
@ -15,6 +18,7 @@
tor.enable = lib.mkDefault true;
virt-manager.enable = lib.mkDefault true;
virtualbox.enable = lib.mkDefault true;
yubikey.enable = lib.mkDefault false;
};
sys.desktop.steamdeck.enable = lib.mkDefault false;
programs.kdeconnect.enable = lib.mkDefault true;