Updated flake inputs

This commit is contained in:
2025-01-06 16:26:44 -05:00
parent 92e4ded24e
commit 3857e144e6
77 changed files with 10748 additions and 221 deletions

View File

@@ -0,0 +1,14 @@
{ lib, config, pkgs, ... }: {
options = {
movOpts.sysEnv.consoleSettings.enable =
lib.mkEnableOption "enables my console settings";
};
config = lib.mkIf config.movOpts.sysEnv.consoleSettings.enable {
i18n.defaultLocale = "en_US.UTF-8";
console = {
earlySetup = true;
font = "Lat2-Terminus32";
packages = with pkgs; [ terminus_font ];
};
};
}

View File

@@ -1,4 +1,5 @@
{ inputs, nixpkgs, nixvim, config, self, username, host, ... }: {
imports = [ (import ./sddm.nix) ] ++ [ (import ./issue.nix) ]
++ [ (import ./nix.nix) ] ++ [ (import ./stylix.nix) ];
++ [ (import ./nix.nix) ] ++ [ (import ./stylix.nix) ];
#++ [ (import ./console.nix) ];
}

View File

@@ -4,12 +4,18 @@
lib.mkEnableOption "enables my nixos settings";
};
config = lib.mkIf config.movOpts.sysEnv.nixSettings.enable {
system.stateVersion = "25.05";
system.stateVersion = "24.05";
nix = {
settings = {
auto-optimise-store = true;
experimental-features = [ "nix-command" "flakes" ];
substituters = [ "https://nix-gaming.cachix.org" ];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
};
time.timeZone = "America/New_York";
i18n.defaultLocale = "en_US.UTF-8";

View File

@@ -19,9 +19,9 @@ in {
};
polarity = "dark";
autoEnable = true;
opacity.terminal = 0.5;
opacity.terminal = 0.8;
targets = {
console.enable = true;
console.enable = false;
feh.enable = true;
grub.enable = true;
gtk.enable = true;