Compare commits

...

8 Commits

20 changed files with 62 additions and 122 deletions

View File

@@ -1,2 +1,3 @@
# nix fmt # nix fmt & statix
f011c8d71ba09bd94ab04b8d771858b90a03fbf9 f011c8d71ba09bd94ab04b8d771858b90a03fbf9
3aff25b4486a143cd6282f8845c16216598e1c7e

View File

@@ -4,3 +4,11 @@ repos:
hooks: hooks:
- id: nixfmt-nix - id: nixfmt-nix
args: [--, --check] args: [--, --check]
- repo: local
hooks:
- id: statix
name: statix
entry: statix check
language: system
files: \.nix$
pass_filenames: false

View File

@@ -50,15 +50,19 @@
}: }:
let let
my-lib = import ./lib { lib = nixpkgs.lib; }; my-lib = import ./lib { inherit (nixpkgs) lib; };
overlays = [ overlays = [
(_: prev: { (_: prev: {
claude-code = inherit
(import inputs.nixpkgs-unstable { (
system = prev.stdenv.hostPlatform.system; (import inputs.nixpkgs-unstable {
config.allowUnfree = true; inherit (prev.stdenv.hostPlatform) system;
}).claude-code; config.allowUnfree = true;
})
)
claude-code
;
}) })
]; ];
@@ -94,7 +98,7 @@
nixosModules = import ./modules/nixos { nixosModules = import ./modules/nixos {
inherit my-lib; inherit my-lib;
lib = nixpkgs.lib; inherit (nixpkgs) lib;
} { }; } { };
} }
// flake-utils.lib.eachDefaultSystem ( // flake-utils.lib.eachDefaultSystem (
@@ -103,15 +107,25 @@
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
in in
{ {
packages = import ./packages { packages =
inherit my-lib; import ./packages
lib = nixpkgs.lib; {
} (inputs // { inherit system; }); inherit my-lib;
inherit (nixpkgs) lib;
}
{
pkgs = nixpkgs.legacyPackages.${system};
pkgs-unstable = inputs.nixpkgs-unstable.legacyPackages.${system};
pkgs-master = inputs.nixpkgs-master.legacyPackages.${system};
};
formatter = pkgs.nixfmt-tree; formatter = pkgs.nixfmt-tree;
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
packages = [ pkgs.pre-commit ]; packages = [
pkgs.pre-commit
pkgs.statix
];
}; };
} }
); );

View File

@@ -27,7 +27,6 @@ in
inputs.self.nixosModules.initrd-ssh inputs.self.nixosModules.initrd-ssh
]; ];
# Modules
yubikey.enable = true; yubikey.enable = true;
openssh.enable = true; openssh.enable = true;
desktop.enable = true; desktop.enable = true;
@@ -58,7 +57,6 @@ in
}; };
}; };
# Stylix theming
stylix = { stylix = {
enable = true; enable = true;
polarity = "dark"; polarity = "dark";
@@ -66,28 +64,22 @@ in
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-material-dark-medium.yaml"; base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-material-dark-medium.yaml";
}; };
# Boot
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
# Locale
time.timeZone = "Europe/Ljubljana"; time.timeZone = "Europe/Ljubljana";
environment.variables.TZ = "America/New_York"; environment.variables.TZ = "America/New_York";
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
# nix-ld for pip-installed binaries # WARN:(@janezicmatej) nix-ld for running pip-installed binaries outside nix, probably want to drop this
# WARN:(matej) probably want to drop this in the future
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
programs.nix-ld.libraries = options.programs.nix-ld.libraries.default; programs.nix-ld.libraries = options.programs.nix-ld.libraries.default;
# Security
security.pki.certificateFiles = [ packages.ca-matheo-si ]; security.pki.certificateFiles = [ packages.ca-matheo-si ];
services.gnome.gnome-keyring.enable = true; services.gnome.gnome-keyring.enable = true;
# Services
services.teamviewer.enable = true; services.teamviewer.enable = true;
# Programs
programs.thunderbird.enable = true; programs.thunderbird.enable = true;
programs._1password.enable = true; programs._1password.enable = true;
programs._1password-gui.enable = true; programs._1password-gui.enable = true;
@@ -99,12 +91,10 @@ in
localNetworkGameTransfers.openFirewall = true; localNetworkGameTransfers.openFirewall = true;
}; };
# Hardware
hardware.keyboard.zsa.enable = true; hardware.keyboard.zsa.enable = true;
hardware.ledger.enable = true; hardware.ledger.enable = true;
hardware.bluetooth.powerOnBoot = true; hardware.bluetooth.powerOnBoot = true;
# Networking
networking = { networking = {
hostName = "matej-nixos"; hostName = "matej-nixos";
useDHCP = false; useDHCP = false;
@@ -123,7 +113,6 @@ in
]; ];
}; };
# XDG
xdg.mime.defaultApplications = { xdg.mime.defaultApplications = {
"application/pdf" = "org.pwmt.zathura.desktop"; "application/pdf" = "org.pwmt.zathura.desktop";
}; };

View File

@@ -25,7 +25,6 @@
inputs.self.nixosModules.initrd-ssh inputs.self.nixosModules.initrd-ssh
]; ];
# Modules
yubikey.enable = true; yubikey.enable = true;
openssh.enable = true; openssh.enable = true;
desktop.enable = true; desktop.enable = true;
@@ -44,7 +43,6 @@
networkModule = "r8169"; networkModule = "r8169";
}; };
# Stylix theming
stylix = { stylix = {
enable = true; enable = true;
polarity = "dark"; polarity = "dark";
@@ -52,7 +50,7 @@
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-material-dark-medium.yaml"; base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-material-dark-medium.yaml";
}; };
# Boot - Lanzaboote secure boot # lanzaboote secure boot
boot.kernelParams = [ "btusb.reset=1" ]; boot.kernelParams = [ "btusb.reset=1" ];
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.enable = lib.mkForce false; boot.loader.systemd-boot.enable = lib.mkForce false;
@@ -61,18 +59,15 @@
pkiBundle = "/var/lib/sbctl"; pkiBundle = "/var/lib/sbctl";
}; };
# Locale
time.timeZone = "Europe/Ljubljana"; time.timeZone = "Europe/Ljubljana";
environment.variables.TZ = "Europe/Ljubljana"; environment.variables.TZ = "Europe/Ljubljana";
# Services
services.udisks2.enable = true; services.udisks2.enable = true;
# Programs
programs._1password.enable = true; programs._1password.enable = true;
programs._1password-gui.enable = true; programs._1password-gui.enable = true;
# Higher sample rate pipewire for audio equipment # higher sample rate for audio equipment
services.pipewire.extraConfig.pipewire.adjust-sample-rate = { services.pipewire.extraConfig.pipewire.adjust-sample-rate = {
"context.properties" = { "context.properties" = {
"default.clock.rate" = 192000; "default.clock.rate" = 192000;
@@ -80,12 +75,10 @@
}; };
}; };
# System packages
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
easyeffects easyeffects
]; ];
# XDG
xdg.mime.defaultApplications = { xdg.mime.defaultApplications = {
"application/pdf" = "org.pwmt.zathura.desktop"; "application/pdf" = "org.pwmt.zathura.desktop";
}; };

View File

@@ -1,6 +1,6 @@
lib: lib:
# takes dir as an argument and creates an attribute set by importing all .nix files in that directory # import all .nix files in dir as attribute set
dir: dir:
let let
readDir = builtins.readDir dir; readDir = builtins.readDir dir;

View File

@@ -15,12 +15,10 @@ let
hostHWConfig = ../hosts/${name}/hardware-configuration.nix; hostHWConfig = ../hosts/${name}/hardware-configuration.nix;
hasHWConfig = builtins.pathExists hostHWConfig; hasHWConfig = builtins.pathExists hostHWConfig;
# Load NixOS-level user config (account, groups, SSH keys)
userNixosConfigs = map (user: ../users/${user}/nixos.nix) ( userNixosConfigs = map (user: ../users/${user}/nixos.nix) (
builtins.filter (user: builtins.pathExists ../users/${user}/nixos.nix) users builtins.filter (user: builtins.pathExists ../users/${user}/nixos.nix) users
); );
# Load home-manager user config
userHMConfigs = nixpkgs.lib.genAttrs users (user: import ../users/${user}/home-manager.nix); userHMConfigs = nixpkgs.lib.genAttrs users (user: import ../users/${user}/home-manager.nix);
in in

View File

@@ -12,26 +12,20 @@
}; };
config = lib.mkIf config.desktop.enable { config = lib.mkIf config.desktop.enable {
# Audio
services.pipewire = { services.pipewire = {
enable = true; enable = true;
pulse.enable = true; pulse.enable = true;
}; };
# Bluetooth
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
services.blueman.enable = true; services.blueman.enable = true;
# Security
security.polkit.enable = true; security.polkit.enable = true;
# D-Bus
services.dbus.enable = true; services.dbus.enable = true;
# Player control
services.playerctld.enable = true; services.playerctld.enable = true;
# XDG Portals
xdg.portal = { xdg.portal = {
enable = true; enable = true;
xdgOpenUsePortal = true; xdgOpenUsePortal = true;
@@ -41,7 +35,6 @@
]; ];
}; };
# Fonts
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
font-awesome font-awesome
nerd-fonts.jetbrains-mono nerd-fonts.jetbrains-mono

View File

@@ -7,9 +7,7 @@ let
# TODO:(@janezicmatej) restructure keys import # TODO:(@janezicmatej) restructure keys import
keys = import ../../users/matej/keys.nix; keys = import ../../users/matej/keys.nix;
cfg = config.initrd-ssh; # generate host keys for new machines: ./scripts/initrd-ssh-keygen.sh
# Generate keys on new machines: ./scripts/initrd-ssh-keygen.sh
keyDir = "/etc/secrets/initrd"; keyDir = "/etc/secrets/initrd";
mkIpString = mkIpString =
@@ -32,25 +30,21 @@ in
address = lib.mkOption { address = lib.mkOption {
type = lib.types.str; type = lib.types.str;
description = "Static IP address";
example = "10.222.0.247"; example = "10.222.0.247";
}; };
gateway = lib.mkOption { gateway = lib.mkOption {
type = lib.types.str; type = lib.types.str;
description = "Gateway address";
example = "10.222.0.1"; example = "10.222.0.1";
}; };
netmask = lib.mkOption { netmask = lib.mkOption {
type = lib.types.str; type = lib.types.str;
default = "255.255.255.0"; default = "255.255.255.0";
description = "Network mask";
}; };
interface = lib.mkOption { interface = lib.mkOption {
type = lib.types.str; type = lib.types.str;
description = "Network interface";
example = "enp5s0"; example = "enp5s0";
}; };
}; };
@@ -58,21 +52,19 @@ in
authorizedKeys = lib.mkOption { authorizedKeys = lib.mkOption {
type = lib.types.listOf lib.types.str; type = lib.types.listOf lib.types.str;
default = keys.sshAuthorizedKeys; default = keys.sshAuthorizedKeys;
description = "SSH public keys authorized for initrd unlock";
}; };
networkModule = lib.mkOption { networkModule = lib.mkOption {
type = lib.types.str; type = lib.types.str;
description = "Kernel module for network interface (e.g., r8169, e1000e)";
example = "r8169"; example = "r8169";
}; };
}; };
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf config.initrd-ssh.enable {
boot.initrd.kernelModules = [ cfg.networkModule ]; boot.initrd.kernelModules = [ config.initrd-ssh.networkModule ];
boot.kernelParams = lib.mkIf cfg.ip.enable [ boot.kernelParams = lib.mkIf config.initrd-ssh.ip.enable [
"ip=${mkIpString cfg.ip}" "ip=${mkIpString config.initrd-ssh.ip}"
]; ];
boot.initrd.network = { boot.initrd.network = {
@@ -84,7 +76,7 @@ in
"${keyDir}/ssh_host_rsa_key" "${keyDir}/ssh_host_rsa_key"
"${keyDir}/ssh_host_ed25519_key" "${keyDir}/ssh_host_ed25519_key"
]; ];
authorizedKeys = cfg.authorizedKeys; inherit (config.initrd-ssh) authorizedKeys;
}; };
postCommands = '' postCommands = ''
echo 'cryptsetup-askpass' >> /root/.profile echo 'cryptsetup-askpass' >> /root/.profile

View File

@@ -10,7 +10,6 @@
port = lib.mkOption { port = lib.mkOption {
type = lib.types.port; type = lib.types.port;
default = 22; default = 22;
description = "SSH server port";
}; };
}; };
}; };

View File

@@ -12,7 +12,6 @@
cmdFlags = lib.mkOption { cmdFlags = lib.mkOption {
type = lib.types.listOf lib.types.str; type = lib.types.listOf lib.types.str;
default = [ ]; default = [ ];
description = "additional command line flags to pass to sway";
}; };
}; };
}; };
@@ -24,23 +23,20 @@
wrapperFeatures.gtk = true; wrapperFeatures.gtk = true;
extraOptions = config.sway.cmdFlags; extraOptions = config.sway.cmdFlags;
extraSessionCommands = '' extraSessionCommands = ''
# Fix for some Java AWT applications (e.g. Android Studio), # fix for java awt apps not rendering
# use this if they aren't displayed properly:
export _JAVA_AWT_WM_NONREPARENTING=1 export _JAVA_AWT_WM_NONREPARENTING=1
''; '';
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# default extra packages
brightnessctl brightnessctl
foot foot
grim grim
pulseaudio pulseaudio
swayidle swayidle
# swaylock - use swaylock-effects instead # use swaylock-effects instead of swaylock
swaylock-effects swaylock-effects
wmenu wmenu
# additional things i like
slurp slurp
wofi wofi
wl-clipboard wl-clipboard

View File

@@ -4,9 +4,6 @@
pkgs, pkgs,
... ...
}: }:
let
cfg = config.tuigreet;
in
{ {
options = { options = {
tuigreet = { tuigreet = {
@@ -14,23 +11,20 @@ in
command = lib.mkOption { command = lib.mkOption {
type = lib.types.str; type = lib.types.str;
description = "Session command to launch";
}; };
}; };
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf config.tuigreet.enable {
services.greetd = { services.greetd = {
enable = true; enable = true;
useTextGreeter = true; useTextGreeter = true;
settings = { settings = {
default_session = { default_session = {
command = builtins.toString ( command = pkgs.writeShellScript "tuigreet-session" ''
pkgs.writeShellScript "tuigreet-session" '' ${pkgs.util-linux}/bin/setterm --blank 1 --powersave powerdown --powerdown 1
${pkgs.util-linux}/bin/setterm --blank 1 --powersave powerdown --powerdown 1 exec ${pkgs.tuigreet}/bin/tuigreet --time --remember --cmd ${config.tuigreet.command}
exec ${pkgs.tuigreet}/bin/tuigreet --time --remember --cmd ${cfg.command} '';
''
);
user = "greeter"; user = "greeter";
}; };
}; };

View File

@@ -4,9 +4,6 @@
pkgs, pkgs,
... ...
}: }:
let
cfg = config.workstation;
in
{ {
options = { options = {
workstation = { workstation = {
@@ -14,7 +11,7 @@ in
}; };
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf config.workstation.enable {
virtualisation.docker = { virtualisation.docker = {
enable = true; enable = true;
logDriver = "json-file"; logDriver = "json-file";

View File

@@ -1,7 +1,6 @@
{ nixpkgs, system, ... }: { pkgs, ... }:
let let
pkgs = import nixpkgs { inherit system; };
version = "v0.3.2"; version = "v0.3.2";
in in
pkgs.rustPlatform.buildRustPackage { pkgs.rustPlatform.buildRustPackage {

View File

@@ -1,13 +1,12 @@
{ nixpkgs, system, ... }: { pkgs, ... }:
let let
pkgs = import nixpkgs { inherit system; };
version = "C6r62em"; version = "C6r62em";
in in
pkgs.stdenv.mkDerivation { pkgs.stdenv.mkDerivation {
pname = "ca-matheo-si"; pname = "ca-matheo-si";
version = version; inherit version;
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "http://ipa2.matheo.si/ipa/config/ca.crt"; url = "http://ipa2.matheo.si/ipa/config/ca.crt";

View File

@@ -1,8 +1,7 @@
{ nixpkgs-master, system, ... }: { pkgs-master, ... }:
let let
nixpkgs = nixpkgs-master; pkgs = pkgs-master;
pkgs = import nixpkgs { inherit system; };
version = "e24855c"; version = "e24855c";
in in
pkgs.buildGoModule.override pkgs.buildGoModule.override

View File

@@ -1,7 +1,6 @@
{ nixpkgs, system, ... }: { pkgs, ... }:
let let
pkgs = import nixpkgs { inherit system; };
version = "main"; version = "main";
in in
pkgs.stdenv.mkDerivation { pkgs.stdenv.mkDerivation {

View File

@@ -1,28 +0,0 @@
{ nixpkgs-master, system, ... }:
let
nixpkgs = nixpkgs-master;
pkgs = import nixpkgs { inherit system; };
version = "v1.25.0";
python = pkgs.python313;
in
python.pkgs.buildPythonPackage rec {
pname = "releasectl";
version = "1.2.0";
src = pkgs.fetchurl {
url = "https://gitlab.com/flarenetwork/infra-public/pipeliner/-/package_files/216813866/download";
sha256 = "sha256-ScBG8BoOKDdOAHTFP+zwyk+Kfu31WoKQSRkutOvnJ5E";
};
format = "wheel"; # if it uses poetry/PEP517, otherwise "setuptools"
# nativeBuildInputs = [ python.pkgs.setuptools python.pkgs.wheel ];
# propagatedBuildInputs = with python.pkgs; [
# # add runtime deps here if needed
# ];
# pyproject = true;
# build-system = [ pkgs.python313Packages.hatchling ];
}

1
statix.toml Normal file
View File

@@ -0,0 +1 @@
disabled = ["repeated_keys"]

View File

@@ -13,7 +13,7 @@ in
{ {
home.stateVersion = "24.11"; home.stateVersion = "24.11";
# TODO:(janezicmatej) do i need this here? # TODO:(@janezicmatej) do i need this here?
services.dunst.enable = true; services.dunst.enable = true;
home.packages = [ home.packages = [
@@ -99,7 +99,6 @@ in
luajit luajit
nodejs_22 # copilot nodejs_22 # copilot
# treesitter
tree-sitter tree-sitter
# lua_fzf # lua_fzf
@@ -109,7 +108,6 @@ in
gnumake gnumake
delta delta
# language server
pyright pyright
typescript-language-server typescript-language-server
lua-language-server lua-language-server
@@ -117,7 +115,6 @@ in
nil nil
nixd nixd
# formatters
nixpkgs-fmt nixpkgs-fmt
stylua stylua
]; ];