Compare commits

..

No commits in common. "2081f38f9650cf9b0afe45736b97d5db853a984c" and "cbb212cbcdbec600ac5bd62c2899d3db9488f277" have entirely different histories.

37 changed files with 502 additions and 670 deletions

10
.editorconfig Normal file
View file

@ -0,0 +1,10 @@
[*]
indent_style = tab
[*.{nix,yaml}]
indent_style = space
indent_size = 2
[*.py]
indent_style = space
indent_size = 4

View file

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"impermanence": { "impermanence": {
"locked": { "locked": {
"lastModified": 1730403150, "lastModified": 1729068498,
"narHash": "sha256-W1FH5aJ/GpRCOA7DXT/sJHFpa5r8sq2qAUncWwRZ3Gg=", "narHash": "sha256-C2sGRJl1EmBq0nO98TNd4cbUy20ABSgnHWXLIJQWRFA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "impermanence", "repo": "impermanence",
"rev": "0d09341beeaa2367bac5d718df1404bf2ce45e6f", "rev": "e337457502571b23e449bf42153d7faa10c0a562",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -17,11 +17,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1730531603, "lastModified": 1729665710,
"narHash": "sha256-Dqg6si5CqIzm87sp57j5nTaeBbWhHFaVyG7V6L8k3lY=", "narHash": "sha256-AlcmCXJZPIlO5dmFzV3V2XF6x/OpNWUV8Y/FMPGd8Z4=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "7ffd9ae656aec493492b44d0ddfb28e79a1ea25d", "rev": "2768c7d042a37de65bb1b5b3268fc987e534c49d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -2,19 +2,13 @@
inputs.nixpkgs.url = "nixpkgs/nixos-unstable"; inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
inputs.impermanence.url = "github:nix-community/impermanence"; inputs.impermanence.url = "github:nix-community/impermanence";
outputs = outputs = { self, nixpkgs, impermanence }:
{
self,
nixpkgs,
impermanence,
}:
let let
inherit (nixpkgs) lib; inherit (nixpkgs) lib;
mypkgs = mypkgs = pkgs:
pkgs: self.lib.dirToAttrs ./pkgs (x: pkgs.callPackage x { }) //
self.lib.dirToAttrs ./pkgs (x: pkgs.callPackage x { }) {
// {
iso = import lib/gen-iso.nix lib pkgs.system; iso = import lib/gen-iso.nix lib pkgs.system;
}; };
@ -36,39 +30,43 @@
in in
{ {
formatter = forAllSystems (system:
nixpkgs.legacyPackages.${system}.nixpkgs-fmt);
lib = { lib = {
base64 = import lib/base64.nix; base64 = import lib/base64.nix;
gen-ssh-config = import lib/gen-ssh-config.nix lib; gen-ssh-config = import lib/gen-ssh-config.nix lib;
ssh-keys = import lib/ssh-keys.nix; ssh-keys = import lib/ssh-keys.nix;
dirToAttrs = dirToAttrs = dir: f: lib.mapAttrs'
dir: f: (name: _: {
lib.mapAttrs' (name: _: {
name = lib.removeSuffix ".nix" name; name = lib.removeSuffix ".nix" name;
value = f "${toString dir}/${name}"; value = f "${toString dir}/${name}";
}) (builtins.readDir dir); })
(builtins.readDir dir);
}; };
nixosModules = self.lib.dirToAttrs ./modules import // { nixosModules =
{
inherit pins; inherit pins;
inherit (impermanence.nixosModules) impermanence; inherit (impermanence.nixosModules) impermanence;
pkgs.nixpkgs.overlays = [ (_: mypkgs) ]; pkgs.nixpkgs.overlays = [ (_: mypkgs) ];
}; } //
self.lib.dirToAttrs ./modules import;
nixosConfigurations = self.lib.dirToAttrs ./hosts ( nixosConfigurations = self.lib.dirToAttrs ./hosts
dir: (dir:
let let cfg = import dir;
cfg = import dir; in lib.nixosSystem {
in
lib.nixosSystem {
inherit (cfg) system; inherit (cfg) system;
modules = modules =
cfg.modules cfg.modules ++
++ [ { networking.hostName = builtins.baseNameOf dir; } ] [{ networking.hostName = builtins.baseNameOf dir; }] ++
++ (builtins.attrValues self.nixosModules); (builtins.attrValues self.nixosModules);
} }
); );
packages = forAllSystems (system: mypkgs nixpkgs.legacyPackages.${system}); packages = forAllSystems (system:
mypkgs nixpkgs.legacyPackages.${system});
}; };
} }

View file

@ -20,10 +20,7 @@ in
]; ];
services.openssh.hostKeys = [ services.openssh.hostKeys = [
{ { type = "ed25519"; path = "${persist}/ssh_host_ed25519_key"; }
type = "ed25519";
path = "${persist}/ssh_host_ed25519_key";
}
]; ];
users.mutableUsers = false; users.mutableUsers = false;
@ -39,27 +36,11 @@ in
hardware.enableRedistributableFirmware = true; hardware.enableRedistributableFirmware = true;
fileSystems = { fileSystems = {
"/" = { "/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; };
device = "tmpfs"; "/boot" = { device = "/dev/disk/by-partlabel/EFI\\x20system\\x20partition"; fsType = "vfat"; };
fsType = "tmpfs"; "/home" = { device = "zroot/locker/home"; fsType = "zfs"; };
options = [ "mode=755" ]; "/nix" = { device = "zroot/locker/nix"; fsType = "zfs"; };
}; "/var/log" = { device = "zroot/locker/log"; fsType = "zfs"; };
"/boot" = {
device = "/dev/disk/by-partlabel/EFI\\x20system\\x20partition";
fsType = "vfat";
};
"/home" = {
device = "zroot/locker/home";
fsType = "zfs";
};
"/nix" = {
device = "zroot/locker/nix";
fsType = "zfs";
};
"/var/log" = {
device = "zroot/locker/log";
fsType = "zfs";
};
}; };
system.stateVersion = "22.05"; system.stateVersion = "22.05";

View file

@ -8,10 +8,7 @@ in
}; };
services.openssh.hostKeys = [ services.openssh.hostKeys = [
{ { type = "ed25519"; path = "${persist}/ssh_host_ed25519_key"; }
type = "ed25519";
path = "${persist}/ssh_host_ed25519_key";
}
]; ];
# services.ollama = { # services.ollama = {
@ -25,10 +22,7 @@ in
sconfig = { sconfig = {
gnome = true; gnome = true;
desktop.enable = true; desktop.enable = true;
wg-home = { wg-home = { enable = true; path = "${persist}/wireguard_home.conf"; };
enable = true;
path = "${persist}/wireguard_home.conf";
};
}; };
environment.persistence."${persist}/system".directories = [ environment.persistence."${persist}/system".directories = [
@ -55,32 +49,14 @@ in
boot = { boot = {
loader.systemd-boot.enable = true; loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true; loader.efi.canTouchEfiVariables = true;
initrd.availableKernelModules = [ initrd.availableKernelModules = [ "xhci_pci" "vmd" "nvme" "sd_mod" ];
"xhci_pci"
"vmd"
"nvme"
"sd_mod"
];
}; };
fileSystems = { fileSystems = {
"/" = { "/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; };
device = "tmpfs"; "/boot" = { fsType = "vfat"; device = "/dev/nvme0n1p1"; };
fsType = "tmpfs"; "/nix" = { device = "levi/nix"; fsType = "zfs"; };
options = [ "mode=755" ]; "/home" = { device = "levi/home"; fsType = "zfs"; };
};
"/boot" = {
fsType = "vfat";
device = "/dev/nvme0n1p1";
};
"/nix" = {
device = "levi/nix";
fsType = "zfs";
};
"/home" = {
device = "levi/home";
fsType = "zfs";
};
}; };
users.mutableUsers = false; users.mutableUsers = false;

View file

@ -1,62 +0,0 @@
{
hardware.nvidia.prime.intelBusId = "PCI:0:2:0";
hardware.nvidia.prime.nvidiaBusId = "PCI:1:0:0";
}
### Nothing here has been tested since 2022
################################################################################
### "sync mode"
#
# good:
# max performance on external displays
# no BIOS settings change needed
#
# bad:
# graphics performance overhead on internal display
# internal display capped at 60hz
#
# hardware.nvidia.prime.sync.enable = true;
# hardware.nvidia.modesetting.enable = true;
# services.xserver.displayManager.gdm.wayland = false;
# services.xserver.videoDrivers = [ "nvidia" ];
# # xrandr workaround for laptop panel not showing up with GDM. Reference:
# # https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/hardware/video/nvidia.nix
# services.xserver.displayManager.sessionCommands = ''
# ${pkgs.xorg.xrandr}/bin/xrandr --setprovideroutputsource modesetting NVIDIA-0
# '';
################################################################################
### nvidia drivers disabled
#
# Not well tested. Possibly Incomplete.
# Won't allow external displays connected to nvidia GPU.
#
# Shutting off Nvidia GPU would theoretically save power.
# I do not think this actually powers down the Nvidia GPU, just stops using it.
#
# boot.kernelParams = [ "module_blacklist=nouveau" ];
################################################################################
### hybrid graphics
#
# Not well tested. Possibly Incomplete.
# Won't allow external displays connected to nvidia GPU.
#
# Everything would use intel by default,
# but specific apps would run on the nvidia GPU under the script.
#
# hardware.nvidia.prime.offload.enable = true;
# services.xserver.videoDrivers = [ "nvidia" ];
# environment.systemPackages = [
# (pkgs.writeShellScriptBin "nv" ''
# export __NV_PRIME_RENDER_OFFLOAD=1
# export __NV_PRIME_RENDER_OFFLOAD_PROVIDER=NVIDIA-G0
# export __GLX_VENDOR_LIBRARY_NAME=nvidia
# export __VK_LAYER_NV_optimus=NVIDIA_only
# exec "$@"
# '')
# ];

View file

@ -1,5 +1,16 @@
{ {
hardware.nvidia.prime.intelBusId = "PCI:0:2:0";
hardware.nvidia.prime.nvidiaBusId = "PCI:1:0:0";
### NVIDIA-only using MUX switch in BIOS. ### NVIDIA-only using MUX switch in BIOS.
#
# good:
# simple, always works.
# max performance everywhere.
#
# bad:
# requires BIOS setting changes, which is annoying.
#
boot.kernelParams = [ "module_blacklist=i915" ]; boot.kernelParams = [ "module_blacklist=i915" ];
services.xserver.displayManager.gdm.wayland = false; services.xserver.displayManager.gdm.wayland = false;
services.xserver.videoDrivers = [ "nvidia" ]; services.xserver.videoDrivers = [ "nvidia" ];
@ -8,3 +19,61 @@
Option "metamodes" "DP-2: 2560x1440_165 +0+0 {AllowGSYNCCompatible=On}" Option "metamodes" "DP-2: 2560x1440_165 +0+0 {AllowGSYNCCompatible=On}"
''; '';
} }
### Nothing below this line has been tested since 2022
################################################################################
### "sync mode"
#
# good:
# max performance on external displays
# no BIOS settings change needed
#
# bad:
# graphics performance overhead on internal display
# internal display capped at 60hz
#
# hardware.nvidia.prime.sync.enable = true;
# hardware.nvidia.modesetting.enable = true;
# services.xserver.displayManager.gdm.wayland = false;
# services.xserver.videoDrivers = [ "nvidia" ];
# # xrandr workaround for laptop panel not showing up with GDM. Reference:
# # https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/hardware/video/nvidia.nix
# services.xserver.displayManager.sessionCommands = ''
# ${pkgs.xorg.xrandr}/bin/xrandr --setprovideroutputsource modesetting NVIDIA-0
# '';
################################################################################
### nvidia drivers disabled
#
# Not well tested. Possibly Incomplete.
# Won't allow external displays connected to nvidia GPU.
#
# Shutting off Nvidia GPU would theoretically save power.
# I do not think this actually powers down the Nvidia GPU, just stops using it.
#
# boot.kernelParams = [ "module_blacklist=nouveau" ];
################################################################################
### hybrid graphics
#
# Not well tested. Possibly Incomplete.
# Won't allow external displays connected to nvidia GPU.
#
# Everything would use intel by default,
# but specific apps would run on the nvidia GPU under the script.
#
# hardware.nvidia.prime.offload.enable = true;
# services.xserver.videoDrivers = [ "nvidia" ];
# environment.systemPackages = [
# (pkgs.writeShellScriptBin "nv" ''
# export __NV_PRIME_RENDER_OFFLOAD=1
# export __NV_PRIME_RENDER_OFFLOAD_PROVIDER=NVIDIA-G0
# export __GLX_VENDOR_LIBRARY_NAME=nvidia
# export __VK_LAYER_NV_optimus=NVIDIA_only
# exec "$@"
# '')
# ];

View file

@ -1,20 +1,15 @@
{ runCommand }: { runCommand }: {
{
b64decode = b64decode = input:
input: builtins.readFile
builtins.readFile ( (runCommand "b64decode" { } ''
runCommand "b64decode" { } ''
base64 -d >$out <${builtins.toFile "input" input} base64 -d >$out <${builtins.toFile "input" input}
'' '');
);
b64encode = b64encode = input:
input: builtins.readFile
builtins.readFile ( (runCommand "b64encode" { } ''
runCommand "b64encode" { } ''
base64 -w0 >$out <${builtins.toFile "input" input} base64 -w0 >$out <${builtins.toFile "input" input}
'' '');
);
} }

View file

@ -1,18 +1,16 @@
lib: system: lib:
system:
let let
sys = lib.nixosSystem { sys = lib.nixosSystem {
inherit system; inherit system;
modules = [ modules = [
( ({ modulesPath, ... }: {
{ modulesPath, ... }:
{
imports = [ imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix" "${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
]; ];
isoImage.squashfsCompression = "gzip -Xcompression-level 1"; isoImage.squashfsCompression = "gzip -Xcompression-level 1";
} })
)
]; ];
}; };

View file

@ -1,22 +1,23 @@
lib: nixosConfigurations: lib:
nixosConfigurations:
let let
sshKnownHostsTxt = builtins.toFile "known_hosts" ( sshKnownHostsTxt = builtins.toFile "known_hosts" (lib.concatMapStrings
lib.concatMapStrings ( (hostName:
hostName: let d = nixosConfigurations.${hostName}.config.deploy;
let in lib.concatMapStrings (key: "${d.ssh.HostName} ${key}\n") d.sshPublicKeys
d = nixosConfigurations.${hostName}.config.deploy; )
in (builtins.attrNames nixosConfigurations)
lib.concatMapStrings (key: "${d.ssh.HostName} ${key}\n") d.sshPublicKeys
) (builtins.attrNames nixosConfigurations)
); );
attrsToList = lib.mapAttrsToList (n: v: "${n} ${v}"); attrsToList = lib.mapAttrsToList (n: v: "${n} ${v}");
attrsToLines = a: lib.concatLines (attrsToList a); attrsToLines = a: lib.concatLines (attrsToList a);
in in
lib.concatMapStrings (host: '' lib.concatMapStrings
(host: ''
Host ${host} Host ${host}
UserKnownHostsFile ${sshKnownHostsTxt} UserKnownHostsFile ${sshKnownHostsTxt}
${attrsToLines nixosConfigurations.${host}.config.deploy.ssh} ${attrsToLines nixosConfigurations.${host}.config.deploy.ssh}
'') (builtins.attrNames nixosConfigurations) '')
(builtins.attrNames nixosConfigurations)

View file

@ -1,17 +1,10 @@
{ { config, lib, pkgs, ... }:
config,
lib,
pkgs,
...
}:
let let
cfg = config.sconfig.ad-domain; cfg = config.sconfig.ad-domain;
in in
{ {
options.sconfig.ad-domain = options.sconfig.ad-domain = with lib; with types;
with lib;
with types;
{ {
enable = mkEnableOption "Join Domain with SSSD"; enable = mkEnableOption "Join Domain with SSSD";
longname = mkOption { longname = mkOption {
@ -24,7 +17,8 @@ in
}; };
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable
{
networking.domain = cfg.longname; networking.domain = cfg.longname;
networking.search = [ (cfg.longname) ]; networking.search = [ (cfg.longname) ];
security.pam.services.sshd.makeHomeDir = true; security.pam.services.sshd.makeHomeDir = true;

View file

@ -1,14 +1,15 @@
let let
brave = ( brave = (final: prev: {
final: prev: {
brave = brave =
let let
# updates to the newer version before it hits the channels # updates to the newer version before it hits the channels
version = "1"; version = "1";
hash = ""; hash = "";
in in
if prev.lib.versionAtLeast prev.brave.version version then if
prev.lib.versionAtLeast prev.brave.version version
then
prev.brave prev.brave
else else
prev.brave.overrideAttrs { prev.brave.overrideAttrs {
@ -17,8 +18,7 @@ let
url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb";
}; };
}; };
} });
);
in in
{ {

View file

@ -18,9 +18,9 @@
lm_sensors lm_sensors
ncdu ncdu
nix-diff nix-diff
nixfmt-rfc-style
nix-index nix-index
nix-prefetch-github nix-prefetch-github
nixpkgs-fmt
nodejs nodejs
openssl openssl
parted parted
@ -42,11 +42,9 @@
(writeShellScriptBin "dirt" "while sleep 1; do grep '^Dirty:' /proc/meminfo ; done") (writeShellScriptBin "dirt" "while sleep 1; do grep '^Dirty:' /proc/meminfo ; done")
(lib.hiPrio ( (lib.hiPrio (writeShellScriptBin "iftop" ''
writeShellScriptBin "iftop" ''
exec ${iftop}/bin/iftop -P -m100M "$@" exec ${iftop}/bin/iftop -P -m100M "$@"
'' ''))
))
(writeShellScriptBin "bat" '' (writeShellScriptBin "bat" ''
${bat}/bin/bat --pager=never --color=always --wrap=never --terminal-width=80 "$@" ${bat}/bin/bat --pager=never --color=always --wrap=never --terminal-width=80 "$@"
@ -87,11 +85,7 @@
update_process_names = 1; update_process_names = 1;
}; };
package = pkgs.htop.overrideAttrs ( package = pkgs.htop.overrideAttrs (
{ { patches ? [ ], ... }: {
patches ? [ ],
...
}:
{
patches = patches ++ [ patches = patches ++ [
# This patch fixes process sort order while in tree view. # This patch fixes process sort order while in tree view.
# Started in 3.3.0. Should be fixed in 3.4.0. # Started in 3.3.0. Should be fixed in 3.4.0.

View file

@ -11,20 +11,16 @@ let
SeparatorFg = 16; SeparatorFg = 16;
}; };
customEnd = [ customEnd = [{
{
Content = "$"; Content = "$";
Foreground = 231; Foreground = 231;
Background = 102; Background = 102;
Separator = left_hard_divider; Separator = left_hard_divider;
} }];
];
plconfig = builtins.toFile "powerline-config.json" ( plconfig = builtins.toFile "powerline-config.json" (builtins.toJSON {
builtins.toJSON {
modes.patched.Separator = upper_left_triangle; modes.patched.Separator = upper_left_triangle;
} });
);
args = [ args = [
"-modules=\${remote:+'user,host,'}nix-shell,git,jobs,cwd,newline,customend" "-modules=\${remote:+'user,host,'}nix-shell,git,jobs,cwd,newline,customend"
@ -41,7 +37,9 @@ in
environment.systemPackages = [ environment.systemPackages = [
pkgs.powerline-go pkgs.powerline-go
(pkgs.writeShellScriptBin "powerline-go-customend" "echo '${builtins.toJSON customEnd}'") (pkgs.writeShellScriptBin
"powerline-go-customend"
"echo '${builtins.toJSON customEnd}'")
]; ];
environment.etc."powerline-theme.json".text = builtins.toJSON theme; environment.etc."powerline-theme.json".text = builtins.toJSON theme;

View file

@ -1,49 +1,26 @@
{ { config, lib, pkgs, ... }:
config,
lib,
pkgs,
...
}:
let let
aconfig = (pkgs.formats.toml { }).generate "alacritty.toml" { aconfig = (pkgs.formats.toml { }).generate "alacritty.toml"
{
env.TERM = "xterm-256color"; env.TERM = "xterm-256color";
font.size = 12; font.size = 12;
window = { window = {
dynamic_padding = true; dynamic_padding = true;
resize_increments = true; resize_increments = true;
dimensions = { dimensions = { columns = 120; lines = 40; };
columns = 120;
lines = 40;
};
}; };
keyboard.bindings = [ keyboard.bindings = [
{ { action = "ScrollHalfPageDown"; mods = "Shift"; key = "PageDown"; }
action = "ScrollHalfPageDown"; { action = "ScrollHalfPageUp"; mods = "Shift"; key = "PageUp"; }
mods = "Shift"; { action = "SpawnNewInstance"; mods = "Control|Shift"; key = "N"; }
key = "PageDown"; { action = "SpawnNewInstance"; mods = "Control|Shift"; key = "T"; }
}
{
action = "ScrollHalfPageUp";
mods = "Shift";
key = "PageUp";
}
{
action = "SpawnNewInstance";
mods = "Control|Shift";
key = "N";
}
{
action = "SpawnNewInstance";
mods = "Control|Shift";
key = "T";
}
]; ];
colors = { colors = {
primary.background = "0x1e1e1e"; primary.background = "0x1e1e1e";
primary.foreground = "0xffffff"; primary.foreground = "0xffffff";
}; };
general.import = [ "${pkgs.alacritty-theme}/tango_dark.toml" ]; import = [ "${pkgs.alacritty-theme}/tango_dark.toml" ];
}; };
# Alacritty seems to not communicate well with gnome-shell. Quick fix: # Alacritty seems to not communicate well with gnome-shell. Quick fix:

View file

@ -1,9 +1,4 @@
{ { config, lib, pkgs, ... }:
config,
lib,
pkgs,
...
}:
{ {
config = lib.mkIf (config.sconfig.desktop.enable) { config = lib.mkIf (config.sconfig.desktop.enable) {
environment.systemPackages = [ environment.systemPackages = [
@ -31,14 +26,8 @@
ShowFullUrlsInAddressBar = true; ShowFullUrlsInAddressBar = true;
SyncDisabled = true; # required for BrowsingDataLifetime SyncDisabled = true; # required for BrowsingDataLifetime
BrowsingDataLifetime = [ BrowsingDataLifetime = [
{ { data_types = [ "browsing_history" ]; time_to_live_in_hours = 24 * 7; }
data_types = [ "browsing_history" ]; { data_types = [ "download_history" ]; time_to_live_in_hours = 6; }
time_to_live_in_hours = 24 * 7;
}
{
data_types = [ "download_history" ];
time_to_live_in_hours = 6;
}
]; ];
}; };
}; };

View file

@ -1,9 +1,4 @@
{ { config, pkgs, lib, ... }:
config,
pkgs,
lib,
...
}:
with lib; with lib;
{ {
options.sconfig.desktop = { options.sconfig.desktop = {

View file

@ -1,9 +1,4 @@
{ { config, lib, pkgs, ... }:
config,
lib,
pkgs,
...
}:
{ {
config = lib.mkIf (config.sconfig.desktop.enable) { config = lib.mkIf (config.sconfig.desktop.enable) {
environment.systemPackages = [ environment.systemPackages = [
@ -17,12 +12,8 @@
OfferToSaveLogins = false; OfferToSaveLogins = false;
DisableFormHistory = true; DisableFormHistory = true;
SearchSuggestEnabled = false; SearchSuggestEnabled = false;
Preferences = Preferences = builtins.mapAttrs
builtins.mapAttrs (n: v: { Value = v; Status = "locked"; })
(n: v: {
Value = v;
Status = "locked";
})
{ {
"accessibility.force_disabled" = 1; "accessibility.force_disabled" = 1;
"browser.aboutConfig.showWarning" = false; "browser.aboutConfig.showWarning" = false;
@ -38,10 +29,8 @@
"ui.key.menuAccessKeyFocuses" = false; "ui.key.menuAccessKeyFocuses" = false;
}; };
ExtensionSettings = ExtensionSettings =
{ { "*".installation_mode = "blocked"; } //
"*".installation_mode = "blocked"; builtins.mapAttrs
}
// builtins.mapAttrs
(n: v: { (n: v: {
installation_mode = "force_installed"; installation_mode = "force_installed";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/${v}/latest.xpi"; install_url = "https://addons.mozilla.org/firefox/downloads/latest/${v}/latest.xpi";

View file

@ -1,9 +1,4 @@
{ { config, lib, pkgs, ... }:
config,
lib,
pkgs,
...
}:
{ {
config = lib.mkIf (config.sconfig.desktop.enable) { config = lib.mkIf (config.sconfig.desktop.enable) {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@ -27,8 +22,9 @@
environment.etc."vscode-keybindings.json".source = ./vscode-keybindings.json; environment.etc."vscode-keybindings.json".source = ./vscode-keybindings.json;
environment.etc."vscode-settings.json".text = builtins.toJSON ( environment.etc."vscode-settings.json".text = builtins.toJSON (
(builtins.fromJSON (builtins.readFile ./vscode-settings.json)) (
// { builtins.fromJSON (builtins.readFile ./vscode-settings.json)
) // {
# NixOS-specific vscode settings: # NixOS-specific vscode settings:
"extensions.autoCheckUpdates" = false; "extensions.autoCheckUpdates" = false;
"extensions.autoUpdate" = false; "extensions.autoUpdate" = false;

View file

@ -1,9 +1,4 @@
{ { config, pkgs, lib, ... }:
config,
pkgs,
lib,
...
}:
let let
cfg = config.sconfig.devtools; cfg = config.sconfig.devtools;
in in
@ -11,7 +6,8 @@ in
options.sconfig.devtools.enable = lib.mkEnableOption "Development Tools"; options.sconfig.devtools.enable = lib.mkEnableOption "Development Tools";
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs;
[
black black
cargo cargo
efm-langserver efm-langserver
@ -38,7 +34,8 @@ in
# dedicated script, because bash aliases dont work with `watch` # dedicated script, because bash aliases dont work with `watch`
(writeShellScriptBin "k" "exec kubectl \"$@\"") (writeShellScriptBin "k" "exec kubectl \"$@\"")
(google-cloud-sdk.withExtraComponents [ google-cloud-sdk.components.gke-gcloud-auth-plugin ]) (google-cloud-sdk.withExtraComponents
[ google-cloud-sdk.components.gke-gcloud-auth-plugin ])
]; ];
programs.bash.interactiveShellInit = '' programs.bash.interactiveShellInit = ''
alias t=terraform alias t=terraform

View file

@ -1,9 +1,4 @@
{ { config, pkgs, lib, ... }:
config,
pkgs,
lib,
...
}:
let let
cfg = config.sconfig.gnome; cfg = config.sconfig.gnome;
in in

View file

@ -4,15 +4,11 @@ let
exec prettier --stdin-filepath "$HX_FILE" exec prettier --stdin-filepath "$HX_FILE"
''; '';
prettier-formats = prettier-formats = map
map
(name: { (name: {
inherit name; inherit name;
auto-format = true; auto-format = true;
indent = { indent = { tab-width = 4; unit = "\t"; };
tab-width = 4;
unit = "\t";
};
formatter.command = hx-pretty; formatter.command = hx-pretty;
}) })
[ [
@ -25,7 +21,8 @@ let
in in
{ {
environment.etc."bck-helix/config.toml".source = (pkgs.formats.toml { }).generate "config.toml" { environment.etc."bck-helix/config.toml".source =
(pkgs.formats.toml { }).generate "config.toml" {
theme = "dark_plus"; theme = "dark_plus";
editor = { editor = {
auto-format = true; auto-format = true;
@ -46,44 +43,28 @@ in
}; };
environment.etc."bck-helix/languages.toml".source = environment.etc."bck-helix/languages.toml".source =
(pkgs.formats.toml { }).generate "languages.toml" (pkgs.formats.toml { }).generate "languages.toml" {
{
language = prettier-formats ++ [ language = prettier-formats ++ [
{ {
name = "bash"; name = "bash";
auto-format = true; auto-format = true;
indent = { indent = { tab-width = 4; unit = "\t"; };
tab-width = 4;
unit = "\t";
};
} }
{ {
name = "lua"; name = "lua";
auto-format = true; auto-format = true;
indent = { indent = { tab-width = 4; unit = "\t"; };
tab-width = 4;
unit = "\t";
};
} }
{ {
name = "nix"; name = "nix";
auto-format = true; auto-format = true;
formatter = { formatter.command = "nixpkgs-fmt";
command = "nixfmt";
args = [ "--verify" ];
};
} }
{ {
name = "python"; name = "python";
auto-format = true; auto-format = true;
language-servers = [ "pyright" ]; language-servers = [ "pyright" ];
formatter = { formatter = { command = "black"; args = [ "--quiet" "-" ]; };
command = "black";
args = [
"--quiet"
"-"
];
};
} }
{ {
name = "yaml"; name = "yaml";
@ -100,19 +81,13 @@ in
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(helix.overrideAttrs ( (helix.overrideAttrs ({ patches ? [ ], ... }: {
{
patches ? [ ],
...
}:
{
# Patch required for .editorconfig to work properly with formatters # Patch required for .editorconfig to work properly with formatters
patches = patches ++ [ ./format-filepath.patch ]; patches = patches ++ [ ./format-filepath.patch ];
postPatch = '' postPatch = ''
sed 's/tab-width = .,/tab-width = 4,/' -i languages.toml sed 's/tab-width = .,/tab-width = 4,/' -i languages.toml
''; '';
} }))
))
]; ];
environment.etc."bck-settings.sh".text = '' environment.etc."bck-settings.sh".text = ''

View file

@ -1,9 +1,4 @@
{ { config, pkgs, lib, ... }:
config,
pkgs,
lib,
...
}:
let let
cfg = config.sconfig.plasma; cfg = config.sconfig.plasma;
in in

View file

@ -1,9 +1,4 @@
{ { config, lib, pkgs, ... }:
config,
lib,
pkgs,
...
}:
let let
cfg = config.sconfig.security-tools; cfg = config.sconfig.security-tools;

View file

@ -1,9 +1,4 @@
{ { config, lib, pkgs, ... }:
config,
lib,
pkgs,
...
}:
let let
cfg = config.sconfig.swapspace; cfg = config.sconfig.swapspace;
in in

View file

@ -1,9 +1,4 @@
{ { config, lib, pkgs, ... }:
config,
lib,
pkgs,
...
}:
let let
cfg = config.sconfig.wg-home; cfg = config.sconfig.wg-home;
in in

View file

@ -1,6 +1,5 @@
{ { lib
lib, , writeTextDir
writeTextDir,
}: }:
writeTextDir "authorized_keys" (lib.concatLines (import ../lib/ssh-keys.nix)) writeTextDir "authorized_keys" (lib.concatLines (import ../lib/ssh-keys.nix))

View file

@ -1,17 +1,20 @@
{ { lib
lib, , extraBinPaths ? [ ]
extraBinPaths ? [ ], , neovim-unwrapped
neovim-unwrapped, , vimPlugins
vimPlugins, , wrapNeovim
wrapNeovim,
}: }:
let let
luafiles = lib.concatLines ( luafiles = lib.concatLines (map
map (x: "luafile ${./lua}/${x}") (builtins.attrNames (builtins.readDir ./lua)) (x: "luafile ${./lua}/${x}")
(builtins.attrNames (builtins.readDir ./lua))
); );
extraPath = lib.concatLines (map (p: "let $PATH .= ':${p}/bin'") (extraBinPaths)); extraPath = lib.concatLines (map
(p: "let $PATH .= ':${p}/bin'")
(extraBinPaths)
);
in in
wrapNeovim neovim-unwrapped { wrapNeovim neovim-unwrapped {

View file

@ -56,7 +56,7 @@ lspconfig.nil_ls.setup({
settings = { settings = {
['nil'] = { ['nil'] = {
formatting = { formatting = {
command = { "nixfmt", "--verify" }, command = { "nixpkgs-fmt" },
}, },
}, },
}, },

View file

@ -1,12 +1,11 @@
{ { stdenv
stdenv, , autoPatchelfHook
autoPatchelfHook, , libglvnd
libglvnd, , makeWrapper
makeWrapper, , python3
python3, , qt6
qt6, , requireFile
requireFile, , unzip
unzip,
}: }:
let let

View file

@ -1,7 +1,6 @@
{ { nixos-rebuild
nixos-rebuild, , python3
python3, , writeShellScriptBin
writeShellScriptBin,
}: }:
writeShellScriptBin "deploy" '' writeShellScriptBin "deploy" ''

View file

@ -1,16 +1,14 @@
{ { callPackage
callPackage, , firecracker
firecracker, , writeShellApplication
writeShellApplication, , writeText
writeText,
}: }:
let let
kernel = callPackage ./kernel.nix { }; kernel = callPackage ./kernel.nix { };
rootfs = callPackage ./rootfs.nix { }; rootfs = callPackage ./rootfs.nix { };
vmconfig = writeText "vmconfig.json" ( vmconfig = writeText "vmconfig.json" (builtins.toJSON {
builtins.toJSON {
boot-source = { boot-source = {
kernel_image_path = "${kernel}/vmlinux"; kernel_image_path = "${kernel}/vmlinux";
boot_args = "panic=1 console=ttyS0 ro"; boot_args = "panic=1 console=ttyS0 ro";
@ -26,14 +24,11 @@ let
machine-config.vcpu_count = 2; machine-config.vcpu_count = 2;
machine-config.mem_size_mib = 1024; machine-config.mem_size_mib = 1024;
network-interfaces = [ ]; network-interfaces = [ ];
} });
);
in in
writeShellApplication { writeShellApplication {
name = "firecracker-vm"; name = "firecracker-vm";
text = "${firecracker}/bin/firecracker --no-api --config-file ${vmconfig}"; text = "${firecracker}/bin/firecracker --no-api --config-file ${vmconfig}";
derivationArgs.passthru = { derivationArgs.passthru = { inherit kernel rootfs; };
inherit kernel rootfs;
};
} }

View file

@ -1,8 +1,7 @@
{ { fetchFromGitHub
fetchFromGitHub, , linuxManualConfig
linuxManualConfig, , linux_6_1
linux_6_1, , kernel ? linux_6_1
kernel ? linux_6_1,
}: }:
let let
@ -13,20 +12,22 @@ let
hash = "sha256-NuVH12cy38uu+8oms66p9k0xoMOJSl5AvY5pD1FCKkI="; hash = "sha256-NuVH12cy38uu+8oms66p9k0xoMOJSl5AvY5pD1FCKkI=";
}; };
shortVer = builtins.head (builtins.match "([0-9]+\.[0-9]+).*" kernel.version); shortVer = builtins.head (
builtins.match
"([0-9]+\.[0-9]+).*"
kernel.version
);
in in
(linuxManualConfig { (linuxManualConfig {
inherit (kernel) src version; inherit (kernel) src version;
configfile = "${fcsrc}/resources/guest_configs/microvm-kernel-ci-x86_64-${shortVer}.config"; configfile =
"${fcsrc}/resources/guest_configs/microvm-kernel-ci-x86_64-${shortVer}.config";
}).overrideAttrs }).overrideAttrs (o: {
(o: {
postInstall = postInstall = (o.postInstall or "") + ''
(o.postInstall or "")
+ ''
cp vmlinux $out/ cp vmlinux $out/
''; '';

View file

@ -1,9 +1,8 @@
{ { e2fsprogs
e2fsprogs, , pkgsStatic
pkgsStatic, , runCommand
runCommand, , util-linux
util-linux, , writeShellScript
writeShellScript,
}: }:
let let

View file

@ -1,9 +1,8 @@
{ { lib
lib, , dpkg
dpkg, , fetchurl
fetchurl, , stdenv
stdenv, , steam-run
steam-run,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {

View file

@ -1,12 +1,11 @@
{ { stdenv
stdenv, , autoPatchelfHook
autoPatchelfHook, , fetchFromGitHub
fetchFromGitHub, , fetchzip
fetchzip, , gcc-unwrapped
gcc-unwrapped, , makeWrapper
makeWrapper, , ocamlPackages
ocamlPackages, , model ? "small"
model ? "small",
}: }:
let let
@ -31,7 +30,8 @@ let
''; '';
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec
{
pname = "mp4grep"; pname = "mp4grep";
version = "0.1.4"; version = "0.1.4";

View file

@ -1,9 +1,4 @@
{ { stdenv, python3, fetchFromGitHub, makeWrapper }:
stdenv,
python3,
fetchFromGitHub,
makeWrapper,
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "weevely"; pname = "weevely";
@ -16,16 +11,14 @@ stdenv.mkDerivation rec {
sha256 = "0sgjf7ihgipb33k73d84dcx7snv2fvbzyd0f4468k1w5w6zqm9xj"; sha256 = "0sgjf7ihgipb33k73d84dcx7snv2fvbzyd0f4468k1w5w6zqm9xj";
}; };
pythonWithPkgs = python3.withPackages ( pythonWithPkgs = python3.withPackages (ps: with ps; [
ps: with ps; [
Mako Mako
prettytable prettytable
pyopenssl pyopenssl
pysocks pysocks
python-dateutil python-dateutil
pyyaml pyyaml
] ]);
);
buildInputs = [ makeWrapper ]; buildInputs = [ makeWrapper ];