organize and configure librewolf
This commit is contained in:
22
modules/core/boot.nix
Normal file
22
modules/core/boot.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
den.aspects.boot = {
|
||||
nixos = {
|
||||
boot = {
|
||||
# kernelPackages = lib.mkForce pkgs.linuxPackages_zen;
|
||||
|
||||
initrd.checkJournalingFS = false;
|
||||
|
||||
loader = {
|
||||
grub.splashImage = null;
|
||||
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
configurationLimit = 25;
|
||||
};
|
||||
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
26
modules/core/essentials.nix
Normal file
26
modules/core/essentials.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
den.aspects.essentials = {
|
||||
nixos = { pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
comma
|
||||
fastfetch
|
||||
git
|
||||
home-manager
|
||||
inetutils
|
||||
micro
|
||||
nh
|
||||
nil
|
||||
nixd
|
||||
nixfmt
|
||||
nix-index
|
||||
nix-output-monitor
|
||||
nix-prefetch
|
||||
nvd
|
||||
psmisc
|
||||
tree
|
||||
unzip
|
||||
wget
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
23
modules/core/locale.nix
Normal file
23
modules/core/locale.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
den.aspects.locale = {
|
||||
nixos = {
|
||||
time.timeZone = "America/Chicago";
|
||||
|
||||
i18n = {
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
|
||||
extraLocaleSettings = {
|
||||
LC_ADDRESS = "en_US.UTF-8";
|
||||
LC_IDENTIFICATION = "en_US.UTF-8";
|
||||
LC_MEASUREMENT = "en_US.UTF-8";
|
||||
LC_MONETARY = "en_US.UTF-8";
|
||||
LC_NAME = "en_US.UTF-8";
|
||||
LC_NUMERIC = "en_US.UTF-8";
|
||||
LC_PAPER = "en_US.UTF-8";
|
||||
LC_TELEPHONE = "en_US.UTF-8";
|
||||
LC_TIME = "en_US.UTF-8";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
10
modules/core/security.nix
Normal file
10
modules/core/security.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
den.aspects.security = {
|
||||
nixos = {
|
||||
security.sudo = {
|
||||
enable = true;
|
||||
wheelNeedsPassword = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user