reformatted with alejandra

This commit is contained in:
Aly Raffauf 2024-04-07 22:16:33 -04:00
parent c4f1643ee6
commit 0ecde61760
84 changed files with 780 additions and 520 deletions

View file

@ -33,26 +33,30 @@
}; };
nixConfig = { nixConfig = {
extra-substituters = extra-substituters = ["https://nixcache.raffauflabs.com" "https://hyprland.cachix.org"];
[ "https://nixcache.raffauflabs.com" "https://hyprland.cachix.org" ];
extra-trusted-public-keys = [ extra-trusted-public-keys = [
"nixcache.raffauflabs.com:yFIuJde/izA4aUDI3MZmBLzynEsqVCT1OfCUghOLlt8=" "nixcache.raffauflabs.com:yFIuJde/izA4aUDI3MZmBLzynEsqVCT1OfCUghOLlt8="
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
]; ];
}; };
outputs = inputs@{ nixpkgs, nixpkgs-unstable, home-manager outputs = inputs @ {
, home-manager-unstable, nixos-hardware, impermanence, disko, disko-unstable nixpkgs,
, ... }: { nixpkgs-unstable,
home-manager,
homeConfigurations.aly = home-manager-unstable,
home-manager-unstable.lib.homeManagerConfiguration { nixos-hardware,
impermanence,
disko,
disko-unstable,
...
}: {
homeConfigurations.aly = home-manager-unstable.lib.homeManagerConfiguration {
pkgs = import nixpkgs-unstable {system = "x86_64-linux";}; pkgs = import nixpkgs-unstable {system = "x86_64-linux";};
modules = [./home.nix]; modules = [./home.nix];
}; };
nixosConfigurations = { nixosConfigurations = {
# Framework 13 with AMD Ryzen 7640U and 32GB RAM. # Framework 13 with AMD Ryzen 7640U and 32GB RAM.
lavaridge = nixpkgs-unstable.lib.nixosSystem { lavaridge = nixpkgs-unstable.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";

View file

@ -1,6 +1,10 @@
{ inputs, config, pkgs, lib, ... }:
{ {
inputs,
config,
pkgs,
lib,
...
}: {
imports = [./homeManagerModules]; imports = [./homeManagerModules];
home.username = "aly"; home.username = "aly";
home.homeDirectory = "/home/aly"; home.homeDirectory = "/home/aly";

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {cliApps.bash.enable = lib.mkEnableOption "Enables bash.";}; options = {cliApps.bash.enable = lib.mkEnableOption "Enables bash.";};
config = lib.mkIf config.cliApps.bash.enable { config = lib.mkIf config.cliApps.bash.enable {

View file

@ -1,6 +1,9 @@
{ config, lib, pkgs, ... }:
{ {
config,
lib,
pkgs,
...
}: {
imports = [./bash ./emacs ./eza ./fzf ./neovim ./tmux ./neofetch]; imports = [./bash ./emacs ./eza ./fzf ./neovim ./tmux ./neofetch];
home.packages = with pkgs; [ home.packages = with pkgs; [

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {cliApps.emacs.enable = lib.mkEnableOption "Enables emacs.";}; options = {cliApps.emacs.enable = lib.mkEnableOption "Enables emacs.";};
config = lib.mkIf config.cliApps.emacs.enable { config = lib.mkIf config.cliApps.emacs.enable {
@ -7,8 +11,7 @@
programs.emacs = { programs.emacs = {
enable = true; enable = true;
extraPackages = (epkgs: extraPackages = epkgs: (with epkgs; [
(with epkgs; [
better-defaults better-defaults
catppuccin-theme catppuccin-theme
markdown-mode markdown-mode
@ -26,7 +29,7 @@
use-package use-package
yaml yaml
yaml-mode yaml-mode
])); ]);
package = pkgs.emacs-nox; package = pkgs.emacs-nox;
extraConfig = builtins.readFile ./emacs.el; extraConfig = builtins.readFile ./emacs.el;
}; };

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {cliApps.eza.enable = lib.mkEnableOption "Enables eza.";}; options = {cliApps.eza.enable = lib.mkEnableOption "Enables eza.";};
config = lib.mkIf config.cliApps.eza.enable { config = lib.mkIf config.cliApps.eza.enable {

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {cliApps.fzf.enable = lib.mkEnableOption "Enables fzf.";}; options = {cliApps.fzf.enable = lib.mkEnableOption "Enables fzf.";};
config = lib.mkIf config.cliApps.fzf.enable { config = lib.mkIf config.cliApps.fzf.enable {

View file

@ -1,13 +1,15 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
cliApps.neofetch.enable = lib.mkEnableOption "Enable neofetch."; cliApps.neofetch.enable = lib.mkEnableOption "Enable neofetch.";
}; };
config = lib.mkIf config.cliApps.neofetch.enable { config = lib.mkIf config.cliApps.neofetch.enable {
home.packages = [pkgs.neofetch]; home.packages = [pkgs.neofetch];
xdg.configFile."neofetch/config.conf".source = ./config.conf; xdg.configFile."neofetch/config.conf".source = ./config.conf;
}; };
} }

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {cliApps.neovim.enable = lib.mkEnableOption "Enables neovim.";}; options = {cliApps.neovim.enable = lib.mkEnableOption "Enables neovim.";};
config = lib.mkIf config.cliApps.neovim.enable { config = lib.mkIf config.cliApps.neovim.enable {

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {cliApps.tmux.enable = lib.mkEnableOption "Enables tmux.";}; options = {cliApps.tmux.enable = lib.mkEnableOption "Enables tmux.";};
config = lib.mkIf config.cliApps.tmux.enable { config = lib.mkIf config.cliApps.tmux.enable {

View file

@ -1,6 +1,9 @@
{ config, pkgs, lib, ... }:
{ {
config,
pkgs,
lib,
...
}: {
imports = [./cliApps ./guiApps ./desktopEnv ./userServices]; imports = [./cliApps ./guiApps ./desktopEnv ./userServices];
nixpkgs = { nixpkgs = {

View file

@ -1,6 +1,9 @@
{ config, lib, pkgs, ... }:
{ {
config,
lib,
pkgs,
...
}: {
imports = [./gnome ./hypr ./sway]; imports = [./gnome ./hypr ./sway];
desktopEnv.hyprland.enable = lib.mkDefault true; desktopEnv.hyprland.enable = lib.mkDefault true;

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopEnv.gnome.enable = desktopEnv.gnome.enable =
lib.mkEnableOption "Enables GNOME with basic settings configuration."; lib.mkEnableOption "Enables GNOME with basic settings configuration.";
@ -12,8 +16,7 @@
"org/gnome/desktop/interface".clock-format = "12h"; "org/gnome/desktop/interface".clock-format = "12h";
"org/gnome/desktop/interface".enable-hot-corners = true; "org/gnome/desktop/interface".enable-hot-corners = true;
"org/gnome/desktop/peripherals/touchpad".tap-to-click = true; "org/gnome/desktop/peripherals/touchpad".tap-to-click = true;
"org/gnome/desktop/search-providers".enabled = "org/gnome/desktop/search-providers".enabled = "['org.gnome.Calendar.desktop', 'org.gnome.Weather.desktop', 'org.gnome.Contacts.desktop', 'org.gnome.Calculator.desktop', 'org.gnome.Characters.desktop', 'org.gnome.clocks.desktop']";
"['org.gnome.Calendar.desktop', 'org.gnome.Weather.desktop', 'org.gnome.Contacts.desktop', 'org.gnome.Calculator.desktop', 'org.gnome.Characters.desktop', 'org.gnome.clocks.desktop']";
"org/gnome/desktop/wm/preferences".auto-raise = true; "org/gnome/desktop/wm/preferences".auto-raise = true;
"org/gnome/mutter".dynamic-workspaces = true; "org/gnome/mutter".dynamic-workspaces = true;
"org/gnome/mutter".edge-tiling = true; "org/gnome/mutter".edge-tiling = true;

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
imports = [./hypridle ./hyprlock ./hyprpaper ./hyprshade ./theme.nix]; imports = [./hypridle ./hyprlock ./hyprpaper ./hyprshade ./theme.nix];
options = { options = {
@ -8,7 +12,6 @@
}; };
config = lib.mkIf config.desktopEnv.hyprland.enable { config = lib.mkIf config.desktopEnv.hyprland.enable {
# Hypr* modules, plguins, and tools. # Hypr* modules, plguins, and tools.
desktopEnv.hyprland.hypridle.enable = lib.mkDefault true; desktopEnv.hyprland.hypridle.enable = lib.mkDefault true;
desktopEnv.hyprland.hyprlock.enable = lib.mkDefault true; desktopEnv.hyprland.hyprlock.enable = lib.mkDefault true;
@ -109,7 +112,6 @@
cursor_size = "24"; cursor_size = "24";
qt_platform_theme = "gtk2"; qt_platform_theme = "gtk2";
gdk_scale = "1.5"; gdk_scale = "1.5";
in '' in ''
monitor = desc:BOE 0x0BCA,preferred,auto,1.566667 # lavaridge fw13 matte display monitor = desc:BOE 0x0BCA,preferred,auto,1.566667 # lavaridge fw13 matte display
monitor = desc:BOE 0x095F,preferred,auto,1.566667# lavaridge fw13 glossy display monitor = desc:BOE 0x095F,preferred,auto,1.566667# lavaridge fw13 glossy display
@ -322,6 +324,5 @@
# Show/hide waybar. # Show/hide waybar.
bind = ${modifier}, F11, exec, pkill -SIGUSR1 waybar bind = ${modifier}, F11, exec, pkill -SIGUSR1 waybar
''; '';
}; };
} }

View file

@ -1,12 +1,15 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopEnv.hyprland.hypridle.enable = desktopEnv.hyprland.hypridle.enable =
lib.mkEnableOption "Enables hypridle."; lib.mkEnableOption "Enables hypridle.";
}; };
config = lib.mkIf config.desktopEnv.hyprland.hypridle.enable { config = lib.mkIf config.desktopEnv.hyprland.hypridle.enable {
# Packages that should be installed to the user profile. # Packages that should be installed to the user profile.
home.packages = with pkgs; [hypridle brightnessctl]; home.packages = with pkgs; [hypridle brightnessctl];

View file

@ -1,12 +1,15 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopEnv.hyprland.hyprlock.enable = desktopEnv.hyprland.hyprlock.enable =
lib.mkEnableOption "Enables hyprlock."; lib.mkEnableOption "Enables hyprlock.";
}; };
config = lib.mkIf config.desktopEnv.hyprland.hyprlock.enable { config = lib.mkIf config.desktopEnv.hyprland.hyprlock.enable {
# Packages that should be installed to the user profile. # Packages that should be installed to the user profile.
home.packages = with pkgs; [hyprlock]; home.packages = with pkgs; [hyprlock];

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
imports = [./hyprpaper-random.nix]; imports = [./hyprpaper-random.nix];
options = { options = {
@ -8,7 +12,6 @@
}; };
config = lib.mkIf config.desktopEnv.hyprland.hyprpaper.enable { config = lib.mkIf config.desktopEnv.hyprland.hyprpaper.enable {
# Packages that should be installed to the user profile. # Packages that should be installed to the user profile.
home.packages = with pkgs; [hyprpaper]; home.packages = with pkgs; [hyprpaper];

View file

@ -1,6 +1,9 @@
{ pkgs, lib, config, ... }: {
pkgs,
let lib,
config,
...
}: let
hyprpaper-random = pkgs.writeShellScriptBin "hyprpaper-random" '' hyprpaper-random = pkgs.writeShellScriptBin "hyprpaper-random" ''
directory=${config.home.homeDirectory}/.config/hypr/wallpapers directory=${config.home.homeDirectory}/.config/hypr/wallpapers
monitor=`hyprctl monitors | grep Monitor | awk '{print $2}'` monitor=`hyprctl monitors | grep Monitor | awk '{print $2}'`
@ -24,13 +27,10 @@ in {
lib.mkEnableOption "Enables hyprpaper random wallpaper script."; lib.mkEnableOption "Enables hyprpaper random wallpaper script.";
}; };
config = config = lib.mkIf config.desktopEnv.hyprland.hyprpaper.randomWallpaper.enable {
lib.mkIf config.desktopEnv.hyprland.hyprpaper.randomWallpaper.enable {
# Packages that should be installed to the user profile. # Packages that should be installed to the user profile.
home.packages = with pkgs; [hyprpaper-random]; home.packages = with pkgs; [hyprpaper-random];
wayland.windowManager.hyprland.extraConfig = wayland.windowManager.hyprland.extraConfig = "exec-once = ${hyprpaper-random}/bin/hyprpaper-random";
"exec-once = ${hyprpaper-random}/bin/hyprpaper-random";
}; };
} }

View file

@ -1,12 +1,15 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopEnv.hyprland.hyprshade.enable = desktopEnv.hyprland.hyprshade.enable =
lib.mkEnableOption "Enables hyprshade with blue light filter."; lib.mkEnableOption "Enables hyprshade with blue light filter.";
}; };
config = lib.mkIf config.desktopEnv.hyprland.hyprshade.enable { config = lib.mkIf config.desktopEnv.hyprland.hyprshade.enable {
# Packages that should be installed to the user profile. # Packages that should be installed to the user profile.
home.packages = with pkgs; [hyprshade]; home.packages = with pkgs; [hyprshade];

View file

@ -1,12 +1,15 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopEnv.hyprland.theme.enable = desktopEnv.hyprland.theme.enable =
lib.mkEnableOption "Hyprland GTK and Qt themes."; lib.mkEnableOption "Hyprland GTK and Qt themes.";
}; };
config = lib.mkIf config.desktopEnv.hyprland.theme.enable { config = lib.mkIf config.desktopEnv.hyprland.theme.enable {
home.pointerCursor = { home.pointerCursor = {
gtk.enable = true; gtk.enable = true;
x11.enable = true; x11.enable = true;
@ -51,7 +54,6 @@
gtk3.extraConfig = {gtk-application-prefer-dark-theme = 1;}; gtk3.extraConfig = {gtk-application-prefer-dark-theme = 1;};
gtk4.extraConfig = {gtk-application-prefer-dark-theme = 1;}; gtk4.extraConfig = {gtk-application-prefer-dark-theme = 1;};
}; };
dconf.settings = { dconf.settings = {

View file

@ -1,11 +1,14 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopEnv.sway.enable = lib.mkEnableOption "Sway with extra apps."; desktopEnv.sway.enable = lib.mkEnableOption "Sway with extra apps.";
}; };
config = lib.mkIf config.desktopEnv.sway.enable { config = lib.mkIf config.desktopEnv.sway.enable {
# Basic apps needed to run a hyprland desktop. # Basic apps needed to run a hyprland desktop.
guiApps.waybar.enable = lib.mkDefault true; guiApps.waybar.enable = lib.mkDefault true;
guiApps.mako.enable = lib.mkDefault true; guiApps.mako.enable = lib.mkDefault true;

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
guiApps.alacritty.enable = lib.mkEnableOption "Enables alacritty."; guiApps.alacritty.enable = lib.mkEnableOption "Enables alacritty.";
}; };
@ -34,4 +38,3 @@
}; };
}; };
} }

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
guiApps.chromium.enable = lib.mkEnableOption "Enables Chromium."; guiApps.chromium.enable = lib.mkEnableOption "Enables Chromium.";
}; };

View file

@ -1,6 +1,9 @@
{ config, lib, pkgs, ... }:
{ {
config,
lib,
pkgs,
...
}: {
imports = [ imports = [
./alacritty ./alacritty
./chromium ./chromium

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {guiApps.firefox.enable = lib.mkEnableOption "Enables Firefox.";}; options = {guiApps.firefox.enable = lib.mkEnableOption "Enables Firefox.";};
config = lib.mkIf config.guiApps.firefox.enable { config = lib.mkIf config.guiApps.firefox.enable {

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
guiApps.fractal.enable = guiApps.fractal.enable =
lib.mkEnableOption "Enables Fractal Matrix client."; lib.mkEnableOption "Enables Fractal Matrix client.";

View file

@ -1,9 +1,12 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {guiApps.fuzzel.enable = lib.mkEnableOption "Enables fuzzel.";}; options = {guiApps.fuzzel.enable = lib.mkEnableOption "Enables fuzzel.";};
config = lib.mkIf config.guiApps.fuzzel.enable { config = lib.mkIf config.guiApps.fuzzel.enable {
home.packages = with pkgs; [ home.packages = with pkgs; [
(nerdfonts.override {fonts = ["Noto"];}) (nerdfonts.override {fonts = ["Noto"];})
(catppuccin-papirus-folders.override { (catppuccin-papirus-folders.override {

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
guiApps.librewolf.enable = lib.mkEnableOption "Enables librewolf."; guiApps.librewolf.enable = lib.mkEnableOption "Enables librewolf.";
}; };
@ -12,17 +16,13 @@
"browser.safebrowsing.phishing.enabled" = true; "browser.safebrowsing.phishing.enabled" = true;
"browser.safebrowsing.blockedURIs.enabled" = true; "browser.safebrowsing.blockedURIs.enabled" = true;
"browser.safebrowsing.provider.google4.gethashURL" = "browser.safebrowsing.provider.google4.gethashURL" = "https://safebrowsing.googleapis.com/v4/fullHashes:find?$ct=application/x-protobuf&key=%GOOGLE_SAFEBROWSING_API_KEY%&$httpMethod=POST";
"https://safebrowsing.googleapis.com/v4/fullHashes:find?$ct=application/x-protobuf&key=%GOOGLE_SAFEBROWSING_API_KEY%&$httpMethod=POST";
"browser.safebrowsing.provider.google4.updateURL" = "browser.safebrowsing.provider.google4.updateURL" = "https://safebrowsing.googleapis.com/v4/threatListUpdates:fetch?$ct=application/x-protobuf&key=%GOOGLE_SAFEBROWSING_API_KEY%&$httpMethod=POST";
"https://safebrowsing.googleapis.com/v4/threatListUpdates:fetch?$ct=application/x-protobuf&key=%GOOGLE_SAFEBROWSING_API_KEY%&$httpMethod=POST";
"browser.safebrowsing.provider.google.gethashURL" = "browser.safebrowsing.provider.google.gethashURL" = "https://safebrowsing.google.com/safebrowsing/gethash?client=SAFEBROWSING_ID&appver=%MAJOR_VERSION%&pver=2.2";
"https://safebrowsing.google.com/safebrowsing/gethash?client=SAFEBROWSING_ID&appver=%MAJOR_VERSION%&pver=2.2";
"browser.safebrowsing.provider.google.updateURL" = "browser.safebrowsing.provider.google.updateURL" = "https://safebrowsing.google.com/safebrowsing/downloads?client=SAFEBROWSING_ID&appver=%MAJOR_VERSION%&pver=2.2&key=%GOOGLE_SAFEBROWSING_API_KEY%";
"https://safebrowsing.google.com/safebrowsing/downloads?client=SAFEBROWSING_ID&appver=%MAJOR_VERSION%&pver=2.2&key=%GOOGLE_SAFEBROWSING_API_KEY%";
"browser.safebrowsing.downloads.enabled" = true; "browser.safebrowsing.downloads.enabled" = true;
"identity.fxaccounts.enabled" = true; "identity.fxaccounts.enabled" = true;

View file

@ -1,9 +1,12 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {guiApps.mako.enable = lib.mkEnableOption "Enables mako.";}; options = {guiApps.mako.enable = lib.mkEnableOption "Enables mako.";};
config = lib.mkIf config.guiApps.mako.enable { config = lib.mkIf config.guiApps.mako.enable {
home.packages = with pkgs; [(nerdfonts.override {fonts = ["Noto"];})]; home.packages = with pkgs; [(nerdfonts.override {fonts = ["Noto"];})];
services.mako = { services.mako = {

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
guiApps.obsidian.enable = lib.mkEnableOption "Enables Obsidian."; guiApps.obsidian.enable = lib.mkEnableOption "Enables Obsidian.";
}; };

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {guiApps.tauon.enable = lib.mkEnableOption "Enables Tauon.";}; options = {guiApps.tauon.enable = lib.mkEnableOption "Enables Tauon.";};
config = lib.mkIf config.guiApps.tauon.enable { config = lib.mkIf config.guiApps.tauon.enable {

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {guiApps.waybar.enable = lib.mkEnableOption "Enables waybar.";}; options = {guiApps.waybar.enable = lib.mkEnableOption "Enables waybar.";};
config = lib.mkIf config.guiApps.waybar.enable { config = lib.mkIf config.guiApps.waybar.enable {
@ -64,8 +68,7 @@
{controller_alias} {controller_address} {controller_alias} {controller_address}
{device_enumerate}''; {device_enumerate}'';
"tooltip-format-enumerate-connected" = "tooltip-format-enumerate-connected" = "{device_alias} {device_address}";
"{device_alias} {device_address}";
"on-click" = "${pkgs.blueberry}/bin/blueberry"; "on-click" = "${pkgs.blueberry}/bin/blueberry";
}; };
"pulseaudio" = { "pulseaudio" = {
@ -88,8 +91,7 @@
"tooltip-format-wifi" = "{essid} ({signalStrength}%) 󰣾"; "tooltip-format-wifi" = "{essid} ({signalStrength}%) 󰣾";
"tooltip-format-ethernet" = "{ifname} "; "tooltip-format-ethernet" = "{ifname} ";
"tooltip-format-disconnected" = "Disconnected"; "tooltip-format-disconnected" = "Disconnected";
"on-click" = "on-click" = "${pkgs.alacritty}/bin/alacritty --class nmtui -e ${pkgs.networkmanager}/bin/nmtui";
"${pkgs.alacritty}/bin/alacritty --class nmtui -e ${pkgs.networkmanager}/bin/nmtui";
}; };
"tray" = {"spacing" = 10;}; "tray" = {"spacing" = 10;};
"power-profiles-daemon" = { "power-profiles-daemon" = {

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {guiApps.webCord.enable = lib.mkEnableOption "Enables WebCord.";}; options = {guiApps.webCord.enable = lib.mkEnableOption "Enables WebCord.";};
config = lib.mkIf config.guiApps.webCord.enable { config = lib.mkIf config.guiApps.webCord.enable {

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {guiApps.wlogout.enable = lib.mkEnableOption "Enables wlogout.";}; options = {guiApps.wlogout.enable = lib.mkEnableOption "Enables wlogout.";};
config = lib.mkIf config.guiApps.wlogout.enable { config = lib.mkIf config.guiApps.wlogout.enable {

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = {guiApps.zoom.enable = lib.mkEnableOption "Enables Zoom.";}; options = {guiApps.zoom.enable = lib.mkEnableOption "Enables Zoom.";};
config = lib.mkIf config.guiApps.zoom.enable { config = lib.mkIf config.guiApps.zoom.enable {

View file

@ -1,6 +1,9 @@
{ config, lib, pkgs, ... }:
{ {
config,
lib,
pkgs,
...
}: {
imports = [./syncthing ./easyeffects]; imports = [./syncthing ./easyeffects];
userServices.syncthing.enable = lib.mkDefault true; userServices.syncthing.enable = lib.mkDefault true;

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
userServices.easyeffects.enable = userServices.easyeffects.enable =
lib.mkEnableOption "EasyEffects user service."; lib.mkEnableOption "EasyEffects user service.";
@ -11,7 +15,6 @@
}; };
config = lib.mkIf config.userServices.easyeffects.enable { config = lib.mkIf config.userServices.easyeffects.enable {
xdg.configFile."easyeffects/output/framework13.json".source = xdg.configFile."easyeffects/output/framework13.json".source =
./framework13.json; ./framework13.json;

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
userServices.syncthing.enable = userServices.syncthing.enable =
lib.mkEnableOption "Enables syncthing as user."; lib.mkEnableOption "Enables syncthing as user.";

View file

@ -1,8 +1,11 @@
# Framework Laptop 13 with AMD Ryzen 7640U, 32GB RAM, 1TB SSD. # Framework Laptop 13 with AMD Ryzen 7640U, 32GB RAM, 1TB SSD.
{ inputs, config, pkgs, lib, ... }:
{ {
inputs,
config,
pkgs,
lib,
...
}: {
imports = [ imports = [
./hardware-configuration.nix # Include the results of the hardware scan. ./hardware-configuration.nix # Include the results of the hardware scan.
./home.nix ./home.nix
@ -43,8 +46,7 @@
virt-manager.enable = true; virt-manager.enable = true;
}; };
users.users.aly.hashedPassword = users.users.aly.hashedPassword = "$y$j9T$O9NgTk6iRfh3mxiRDvfdm1$BjvsAKYEMB3C28652FF15cj/i.3TgQAObQvR0rN1E6C";
"$y$j9T$O9NgTk6iRfh3mxiRDvfdm1$BjvsAKYEMB3C28652FF15cj/i.3TgQAObQvR0rN1E6C";
system.stateVersion = "23.11"; # Did you read the comment? system.stateVersion = "23.11"; # Did you read the comment?
} }

View file

@ -1,13 +1,16 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ {
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [(modulesPath + "/installer/scan/not-detected.nix")]; imports = [(modulesPath + "/installer/scan/not-detected.nix")];
boot.initrd.availableKernelModules = boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod"];
[ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = []; boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-amd" "amd-gpu"]; boot.kernelModules = ["kvm-amd" "amd-gpu"];
boot.extraModulePackages = []; boot.extraModulePackages = [];

View file

@ -1,6 +1,10 @@
{ inputs, config, pkgs, lib, ... }:
{ {
inputs,
config,
pkgs,
lib,
...
}: {
home-manager.users.aly = { home-manager.users.aly = {
imports = [../../homeManagerModules]; imports = [../../homeManagerModules];
home.username = "aly"; home.username = "aly";

View file

@ -1,8 +1,10 @@
# Custom desktop with AMD Ryzen 5 2600, 16GB RAM, AMD Rx 6700, and 1TB SSD + 2TB HDD. # Custom desktop with AMD Ryzen 5 2600, 16GB RAM, AMD Rx 6700, and 1TB SSD + 2TB HDD.
{ config, pkgs, lib, ... }:
{ {
config,
pkgs,
lib,
...
}: {
imports = [./hardware-configuration.nix ./home.nix]; imports = [./hardware-configuration.nix ./home.nix];
# Bootloader. # Bootloader.

View file

@ -1,10 +1,13 @@
{ config, lib, pkgs, modulesPath, ... }:
{ {
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [(modulesPath + "/installer/scan/not-detected.nix")]; imports = [(modulesPath + "/installer/scan/not-detected.nix")];
boot.initrd.availableKernelModules = boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "sd_mod"];
[ "xhci_pci" "ahci" "nvme" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = []; boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-amd" "amdgpu"]; boot.kernelModules = ["kvm-amd" "amdgpu"];
boot.extraModulePackages = []; boot.extraModulePackages = [];
@ -43,10 +46,12 @@
fsType = "ext4"; fsType = "ext4";
}; };
swapDevices = [{ swapDevices = [
{
device = "/dev/disk/by-uuid/26094ada-7ba4-4437-bacb-b3cdf6c3397b"; device = "/dev/disk/by-uuid/26094ada-7ba4-4437-bacb-b3cdf6c3397b";
priority = 1; priority = 1;
}]; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's

View file

@ -1,6 +1,10 @@
{ inputs, config, pkgs, lib, ... }:
{ {
inputs,
config,
pkgs,
lib,
...
}: {
home-manager.users.aly = { home-manager.users.aly = {
imports = [../../homeManagerModules]; imports = [../../homeManagerModules];
home.username = "aly"; home.username = "aly";

View file

@ -1,8 +1,9 @@
# Lenovo Yoga 9i Convertible with Intel Core i7-1360P, 15GB RAM, 512GB SSD. # Lenovo Yoga 9i Convertible with Intel Core i7-1360P, 15GB RAM, 512GB SSD.
{
{ config, pkgs, ... }: config,
pkgs,
let ...
}: let
cs-adjuster = pkgs.writeShellScriptBin "cs-adjuster" '' cs-adjuster = pkgs.writeShellScriptBin "cs-adjuster" ''
# Get current color scheme # Get current color scheme
color_scheme=$(gsettings get org.gnome.desktop.interface color-scheme) color_scheme=$(gsettings get org.gnome.desktop.interface color-scheme)
@ -50,7 +51,6 @@ let
notify-send "Power profile set to $new_profile." notify-send "Power profile set to $new_profile."
''; '';
}; };
in { in {
imports = [ imports = [
./disko.nix ./disko.nix

View file

@ -1,15 +1,17 @@
{ config, lib, pkgs, modulesPath, ... }:
{ {
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [(modulesPath + "/installer/scan/not-detected.nix")]; imports = [(modulesPath + "/installer/scan/not-detected.nix")];
boot.initrd.availableKernelModules = boot.initrd.availableKernelModules = ["xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod"];
[ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = []; boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-intel"]; boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = []; boot.extraModulePackages = [];
# Intel drivers with accelerated video playback support. # Intel drivers with accelerated video playback support.
nixpkgs.config.packageOverrides = pkgs: { nixpkgs.config.packageOverrides = pkgs: {
intel-vaapi-driver = intel-vaapi-driver =

View file

@ -1,8 +1,11 @@
{ inputs, config, pkgs, lib, ... }:
{ {
users.users.aly.hashedPassword = inputs,
"$y$j9T$Ug0ZLHQQuRciFJDgOI6r00$eHc.KyQY0oU4k0LKRiZiGWJ19jkKNWHpOoyCJbtJif8"; config,
pkgs,
lib,
...
}: {
users.users.aly.hashedPassword = "$y$j9T$Ug0ZLHQQuRciFJDgOI6r00$eHc.KyQY0oU4k0LKRiZiGWJ19jkKNWHpOoyCJbtJif8";
home-manager.users.aly = { home-manager.users.aly = {
imports = [../../homeManagerModules]; imports = [../../homeManagerModules];
home.username = "aly"; home.username = "aly";
@ -16,5 +19,4 @@
preset = "LoudnessEqualizer.json"; preset = "LoudnessEqualizer.json";
}; };
}; };
} }

View file

@ -1,8 +1,10 @@
# Lenovo Thinkpad T440p with a Core i5 4210M, 16GB RAM, 512GB SSD. # Lenovo Thinkpad T440p with a Core i5 4210M, 16GB RAM, 512GB SSD.
{ config, lib, pkgs, ... }:
{ {
config,
lib,
pkgs,
...
}: {
imports = [ imports = [
./hardware-configuration.nix # Include the results of the hardware scan. ./hardware-configuration.nix # Include the results of the hardware scan.
./home.nix ./home.nix

View file

@ -1,6 +1,10 @@
{ config, lib, pkgs, modulesPath, ... }:
{ {
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [(modulesPath + "/installer/scan/not-detected.nix")]; imports = [(modulesPath + "/installer/scan/not-detected.nix")];
boot.initrd.availableKernelModules = [ boot.initrd.availableKernelModules = [

View file

@ -1,10 +1,13 @@
{ inputs, config, pkgs, lib, ... }:
{ {
inputs,
config,
pkgs,
lib,
...
}: {
userConfig.dustin.enable = true; userConfig.dustin.enable = true;
users.users.dustin.hashedPassword = users.users.dustin.hashedPassword = "$y$j9T$OXQYhj4IWjRJWWYsSwcqf.$lCcdq9S7m0EAdej9KMHWj9flH8K2pUb2gitNhLTlLG/";
"$y$j9T$OXQYhj4IWjRJWWYsSwcqf.$lCcdq9S7m0EAdej9KMHWj9flH8K2pUb2gitNhLTlLG/";
home-manager.users.dustin = { home-manager.users.dustin = {
imports = [../../homeManagerModules]; imports = [../../homeManagerModules];
@ -22,8 +25,7 @@
}; };
}; };
users.users.aly.hashedPassword = users.users.aly.hashedPassword = "$y$j9T$VdtiEyMOegHpcUwgmCVFD0$K8Ne6.zk//VJNq2zxVQ0xE0Wg3LohvAQd3Xm9aXdM15";
"$y$j9T$VdtiEyMOegHpcUwgmCVFD0$K8Ne6.zk//VJNq2zxVQ0xE0Wg3LohvAQd3Xm9aXdM15";
home-manager.users.aly = { home-manager.users.aly = {
imports = [../../homeManagerModules]; imports = [../../homeManagerModules];

View file

@ -1,5 +1,8 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
imports = [./flatpak ./steam ./podman ./virt-manager]; imports = [./flatpak ./steam ./podman ./virt-manager];
} }

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
apps.flatpak.enable = apps.flatpak.enable =
lib.mkEnableOption "Enables flatpak support with GUI."; lib.mkEnableOption "Enables flatpak support with GUI.";

View file

@ -1,12 +1,15 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
apps.podman.enable = apps.podman.enable =
lib.mkEnableOption "Enables Podman for OCI container support."; lib.mkEnableOption "Enables Podman for OCI container support.";
}; };
config = lib.mkIf config.apps.podman.enable { config = lib.mkIf config.apps.podman.enable {
virtualisation = { virtualisation = {
oci-containers = {backend = "podman";}; oci-containers = {backend = "podman";};
podman = { podman = {
@ -15,6 +18,5 @@
enable = true; enable = true;
}; };
}; };
}; };
} }

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
apps.steam.enable = lib.mkEnableOption "Enables Steam for video games."; apps.steam.enable = lib.mkEnableOption "Enables Steam for video games.";
}; };

View file

@ -1,15 +1,17 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
apps.virt-manager.enable = apps.virt-manager.enable =
lib.mkEnableOption "Enables virt-manager with TPM and EFI support."; lib.mkEnableOption "Enables virt-manager with TPM and EFI support.";
}; };
config = lib.mkIf config.apps.virt-manager.enable { config = lib.mkIf config.apps.virt-manager.enable {
programs.virt-manager.enable = true; programs.virt-manager.enable = true;
virtualisation = {libvirtd.enable = true;}; virtualisation = {libvirtd.enable = true;};
}; };
} }

View file

@ -1,6 +1,7 @@
{ config, pkgs, ... }:
{ {
config,
pkgs,
...
}: {
imports = [./desktopConfig ./homeLab ./apps ./systemConfig ./userConfig]; imports = [./desktopConfig ./homeLab ./apps ./systemConfig ./userConfig];
} }

View file

@ -1,7 +1,10 @@
{ pkgs, lib, config, ... }: { {
pkgs,
imports = lib,
[ ./displayManagers/lightdm ./desktopEnvironments ./windowManagers ]; config,
...
}: {
imports = [./displayManagers/lightdm ./desktopEnvironments ./windowManagers];
options = { options = {
desktopConfig.enable = desktopConfig.enable =
@ -9,7 +12,6 @@
}; };
config = lib.mkIf config.desktopConfig.enable { config = lib.mkIf config.desktopConfig.enable {
services = { services = {
gnome.gnome-keyring.enable = true; gnome.gnome-keyring.enable = true;
gvfs.enable = true; # Mount, trash, etc. gvfs.enable = true; # Mount, trash, etc.

View file

@ -1,4 +1,8 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
imports = [./gnome ./plasma]; imports = [./gnome ./plasma];
} }

View file

@ -1,6 +1,11 @@
{ pkgs, lib, config, ... }: { {
pkgs,
imports = [ # Include X settings. lib,
config,
...
}: {
imports = [
# Include X settings.
./fprintdFix.nix ./fprintdFix.nix
./tripleBuffering.nix ./tripleBuffering.nix
]; ];
@ -11,7 +16,6 @@
}; };
config = lib.mkIf config.desktopConfig.desktopEnvironments.gnome.enable { config = lib.mkIf config.desktopConfig.desktopEnvironments.gnome.enable {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
gnomeExtensions.appindicator gnomeExtensions.appindicator
gnomeExtensions.blur-my-shell gnomeExtensions.blur-my-shell

View file

@ -1,18 +1,20 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopConfig.desktopEnvironments.gnome.fprintdFix.enable = desktopConfig.desktopEnvironments.gnome.fprintdFix.enable =
lib.mkEnableOption lib.mkEnableOption
"Fixes fprintd and pam issues with GNOME Display Manager."; "Fixes fprintd and pam issues with GNOME Display Manager.";
}; };
config = config = lib.mkIf config.desktopConfig.desktopEnvironments.gnome.fprintdFix.enable {
lib.mkIf config.desktopConfig.desktopEnvironments.gnome.fprintdFix.enable {
# Need to change the order pam loads its modules # Need to change the order pam loads its modules
# to get proper fingerprint behavior on GDM and the lockscreen. # to get proper fingerprint behavior on GDM and the lockscreen.
security.pam.services.login.fprintAuth = false; security.pam.services.login.fprintAuth = false;
security.pam.services.gdm-fingerprint = security.pam.services.gdm-fingerprint = lib.mkIf (config.services.fprintd.enable) {
lib.mkIf (config.services.fprintd.enable) {
text = '' text = ''
auth required pam_shells.so auth required pam_shells.so
auth requisite pam_nologin.so auth requisite pam_nologin.so

View file

@ -1,11 +1,16 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopConfig.desktopEnvironments.gnome.tripleBuffering.enable = desktopConfig.desktopEnvironments.gnome.tripleBuffering.enable =
lib.mkEnableOption "Enables dynamic triple buffering for GNOME."; lib.mkEnableOption "Enables dynamic triple buffering for GNOME.";
}; };
config = lib.mkIf config =
lib.mkIf
config.desktopConfig.desktopEnvironments.gnome.tripleBuffering.enable { config.desktopConfig.desktopEnvironments.gnome.tripleBuffering.enable {
nixpkgs.overlays = [ nixpkgs.overlays = [
(final: prev: { (final: prev: {

View file

@ -1,12 +1,15 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopConfig.plasma.enable = desktopConfig.plasma.enable =
lib.mkEnableOption "Enables plasma desktop session."; lib.mkEnableOption "Enables plasma desktop session.";
}; };
config = lib.mkIf config.desktopConfig.plasma.enable { config = lib.mkIf config.desktopConfig.plasma.enable {
# Enable SDDM + Plasma Desktop. # Enable SDDM + Plasma Desktop.
services = { services = {
desktopManager.plasma6.enable = true; desktopManager.plasma6.enable = true;

View file

@ -1,4 +1,8 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
imports = [./lightdm]; imports = [./lightdm];
} }

View file

@ -1,12 +1,16 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopConfig.displayManagers.lightdm.enable = lib.mkEnableOption desktopConfig.displayManagers.lightdm.enable =
lib.mkEnableOption
"Enables lightdm and slick greeter with Catppuccin theme."; "Enables lightdm and slick greeter with Catppuccin theme.";
}; };
config = lib.mkIf config.desktopConfig.displayManagers.lightdm.enable { config = lib.mkIf config.desktopConfig.displayManagers.lightdm.enable {
security.pam.services.lightdm.enableKwallet = true; security.pam.services.lightdm.enableKwallet = true;
security.pam.services.lightdm.enableGnomeKeyring = true; security.pam.services.lightdm.enableGnomeKeyring = true;

View file

@ -1,4 +1,8 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
imports = [./hyprland]; imports = [./hyprland];
} }

View file

@ -1,20 +1,23 @@
{ inputs, pkgs, lib, config, ... }: { {
inputs,
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopConfig.windowManagers.hyprland.enable = desktopConfig.windowManagers.hyprland.enable =
lib.mkEnableOption "Enables hyprland window manager session."; lib.mkEnableOption "Enables hyprland window manager session.";
}; };
config = lib.mkIf config.desktopConfig.windowManagers.hyprland.enable { config = lib.mkIf config.desktopConfig.windowManagers.hyprland.enable {
desktopConfig.displayManagers.lightdm.enable = lib.mkDefault false; desktopConfig.displayManagers.lightdm.enable = lib.mkDefault false;
services.greetd = { services.greetd = {
enable = true; enable = true;
settings = rec { settings = rec {
default_session = { default_session = {
command = command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --remember --cmd Hyprland";
"${pkgs.greetd.tuigreet}/bin/tuigreet --time --remember --cmd Hyprland";
}; };
}; };
}; };

View file

@ -1,12 +1,15 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
desktopConfig.windowManagers.sway.enable = desktopConfig.windowManagers.sway.enable =
lib.mkEnableOption "Sway window manager session."; lib.mkEnableOption "Sway window manager session.";
}; };
config = lib.mkIf config.desktopConfig.windowManagers.sway.enable { config = lib.mkIf config.desktopConfig.windowManagers.sway.enable {
desktopConfig.displayManagers.lightdm.enable = lib.mkDefault true; desktopConfig.displayManagers.lightdm.enable = lib.mkDefault true;
programs.sway.enable = true; programs.sway.enable = true;

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
homeLab.binaryCache.enable = lib.mkEnableOption "Enables nixpkgs cache."; homeLab.binaryCache.enable = lib.mkEnableOption "Enables nixpkgs cache.";
}; };

View file

@ -1,7 +1,10 @@
{ pkgs, lib, config, ... }: { {
pkgs,
imports = lib,
[ ./binaryCache ./reverseProxy ./nixContainers ./ociContainers ./samba ]; config,
...
}: {
imports = [./binaryCache ./reverseProxy ./nixContainers ./ociContainers ./samba];
options = { options = {
homeLab.enable = lib.mkEnableOption "Enables fully functional Home Lab."; homeLab.enable = lib.mkEnableOption "Enables fully functional Home Lab.";

View file

@ -1,16 +1,24 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
homeLab.nixContainers.enable = homeLab.nixContainers.enable =
lib.mkEnableOption "Enables select nix containers."; lib.mkEnableOption "Enables select nix containers.";
}; };
config = lib.mkIf config.homeLab.nixContainers.enable { config = lib.mkIf config.homeLab.nixContainers.enable {
containers.navidrome = { containers.navidrome = {
autoStart = true; autoStart = true;
bindMounts."/Music".hostPath = "/mnt/Media/Music"; bindMounts."/Music".hostPath = "/mnt/Media/Music";
config = { config, pkgs, lib, ... }: { config = {
config,
pkgs,
lib,
...
}: {
system.stateVersion = "24.05"; system.stateVersion = "24.05";
services.navidrome = { services.navidrome = {
enable = true; enable = true;

View file

@ -1,12 +1,15 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
homeLab.ociContainers.enable = homeLab.ociContainers.enable =
lib.mkEnableOption "Enables select OCI containers."; lib.mkEnableOption "Enables select OCI containers.";
}; };
config = lib.mkIf config.homeLab.ociContainers.enable { config = lib.mkIf config.homeLab.ociContainers.enable {
apps.podman.enable = lib.mkDefault true; apps.podman.enable = lib.mkDefault true;
virtualisation.oci-containers.containers = { virtualisation.oci-containers.containers = {
@ -14,8 +17,7 @@
ports = ["0.0.0.0:13378:80"]; ports = ["0.0.0.0:13378:80"];
image = "ghcr.io/advplyr/audiobookshelf:latest"; image = "ghcr.io/advplyr/audiobookshelf:latest";
environment = {TZ = "America/New_York";}; environment = {TZ = "America/New_York";};
volumes = volumes = ["abs_config:/config" "abs_metadata:/metadata" "/mnt/Media:/Media"];
[ "abs_config:/config" "abs_metadata:/metadata" "/mnt/Media:/Media" ];
}; };
plex-server = { plex-server = {
ports = ["0.0.0.0:32400:32400"]; ports = ["0.0.0.0:32400:32400"];

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
homeLab.reverseProxy.enable = homeLab.reverseProxy.enable =
lib.mkEnableOption "Enables nginx reverse proxy."; lib.mkEnableOption "Enables nginx reverse proxy.";
@ -67,8 +71,7 @@
virtualHosts."nixcache.raffauflabs.com" = { virtualHosts."nixcache.raffauflabs.com" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
locations."/".proxyPass = locations."/".proxyPass = "http://${config.services.nix-serve.bindAddress}:${
"http://${config.services.nix-serve.bindAddress}:${
toString config.services.nix-serve.port toString config.services.nix-serve.port
}"; }";
}; };

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
homeLab.samba.enable = homeLab.samba.enable =
lib.mkEnableOption "Enables /Archive and /Media samba shares."; lib.mkEnableOption "Enables /Archive and /Media samba shares.";

View file

@ -1,6 +1,9 @@
{ config, pkgs, lib, ... }:
{ {
config,
pkgs,
lib,
...
}: {
imports = [./network.nix ./plymouth ./power-profiles-daemon ./zramSwap]; imports = [./network.nix ./plymouth ./power-profiles-daemon ./zramSwap];
systemConfig.power-profiles-daemon.enable = lib.mkDefault true; systemConfig.power-profiles-daemon.enable = lib.mkDefault true;

View file

@ -1,6 +1,8 @@
{ config, pkgs, ... }:
{ {
config,
pkgs,
...
}: {
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking = { networking = {
networkmanager.enable = true; networkmanager.enable = true;

View file

@ -1,7 +1,12 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
systemConfig.plymouth.enable = lib.mkEnableOption systemConfig.plymouth.enable =
lib.mkEnableOption
"Enables plymouth boot screen with reduced text verbosity."; "Enables plymouth boot screen with reduced text verbosity.";
}; };

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
systemConfig.power-profiles-daemon.enable = systemConfig.power-profiles-daemon.enable =
lib.mkEnableOption "Enables power-profiles-daemon."; lib.mkEnableOption "Enables power-profiles-daemon.";

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
systemConfig.zramSwap.enable = lib.mkEnableOption "Enables zram swap."; systemConfig.zramSwap.enable = lib.mkEnableOption "Enables zram swap.";
systemConfig.zramSwap.size = lib.mkOption { systemConfig.zramSwap.size = lib.mkOption {

View file

@ -1,5 +1,10 @@
{ inputs, pkgs, lib, config, ... }: { {
inputs,
pkgs,
lib,
config,
...
}: {
options = { options = {
userConfig.aly.enable = lib.mkEnableOption "Enables Aly's user."; userConfig.aly.enable = lib.mkEnableOption "Enables Aly's user.";
}; };

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
imports = [./aly ./dustin]; imports = [./aly ./dustin];
userConfig.aly.enable = lib.mkDefault true; userConfig.aly.enable = lib.mkDefault true;

View file

@ -1,5 +1,9 @@
{ pkgs, lib, config, ... }: { {
pkgs,
lib,
config,
...
}: {
options = { options = {
userConfig.dustin.enable = lib.mkEnableOption "Enables Dustin's user."; userConfig.dustin.enable = lib.mkEnableOption "Enables Dustin's user.";
}; };