Compare commits

..

No commits in common. "943e4c84d967e2390a71adec1fff00c23a28c6a7" and "fb60b7c054b9a676849f62469bb09dabce0adc7c" have entirely different histories.

14 changed files with 175 additions and 228 deletions

36
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1768923567, "lastModified": 1766150702,
"narHash": "sha256-GVJ0jKsyXLuBzRMXCDY6D5J8wVdwP1DuQmmvYL/Vw/Q=", "narHash": "sha256-P0kM+5o+DKnB6raXgFEk3azw8Wqg5FL6wyl9jD+G5a4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "disko", "repo": "disko",
"rev": "00395d188e3594a1507f214a2f15d4ce5c07cb28", "rev": "916506443ecd0d0b4a0f4cf9d40a3c22ce39b378",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -114,11 +114,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1769069492, "lastModified": 1767281941,
"narHash": "sha256-Efs3VUPelRduf3PpfPP2ovEB4CXT7vHf8W+xc49RL/U=", "narHash": "sha256-6MkqajPICgugsuZ92OMoQcgSHnD6sJHwk8AxvMcIgTE=",
"owner": "cachix", "owner": "cachix",
"repo": "git-hooks.nix", "repo": "git-hooks.nix",
"rev": "a1ef738813b15cf8ec759bdff5761b027e3e1d23", "rev": "f0927703b7b1c8d97511c4116eb9b4ec6645a0fa",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -222,11 +222,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1769086393, "lastModified": 1768584846,
"narHash": "sha256-3ymIZ8s3+hu7sDl/Y48o6bwMxorfKrmn97KuWiw1vjY=", "narHash": "sha256-IRPmIOV2tPwxbhP/I9M5AmwhTC0lMPtoPStC+8T6xl0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "9f7ba891ea5fc3ededd7804f1a23fafadbcb26ca", "rev": "cce68f4a54fa4e3d633358364477f5cc1d782440",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -237,11 +237,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1769089682, "lastModified": 1768323494,
"narHash": "sha256-9yA/LIuAVQq0lXelrZPjLuLVuZdm03p8tfmHhnDIkms=", "narHash": "sha256-yBXJLE6WCtrGo7LKiB6NOt6nisBEEkguC/lq/rP3zRQ=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "078d69f03934859a181e81ba987c2bb033eebfc5", "rev": "2c3e5ec5df46d3aeee2a1da0bfedd74e21f4bf3a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -297,11 +297,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1769018530, "lastModified": 1768564909,
"narHash": "sha256-MJ27Cy2NtBEV5tsK+YraYr2g851f3Fl1LpNHDzDX15c=", "narHash": "sha256-Kell/SpJYVkHWMvnhqJz/8DqQg2b6PguxVWOuadbHCc=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "88d3861acdd3d2f0e361767018218e51810df8a1", "rev": "e4bae1bd10c9c57b2cf517953ab70060a828ee6f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -354,11 +354,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1768863606, "lastModified": 1768481291,
"narHash": "sha256-1IHAeS8WtBiEo5XiyJBHOXMzECD6aaIOJmpQKzRRl64=", "narHash": "sha256-NjKtkJraCZEnLHAJxLTI+BfdU//9coAz9p5TqveZwPU=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "c7067be8db2c09ab1884de67ef6c4f693973f4a2", "rev": "e085e303dfcce21adcb5fec535d65aacb066f101",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -97,7 +97,6 @@
keep-sorted.enable = true; keep-sorted.enable = true;
markdownlint.enable = true; markdownlint.enable = true;
nil.enable = true; nil.enable = true;
nixf-diagnose.enable = true;
nixfmt-rfc-style.enable = true; nixfmt-rfc-style.enable = true;
shellcheck.enable = true; shellcheck.enable = true;
statix.enable = true; statix.enable = true;

View file

@ -50,8 +50,10 @@
}; };
}; };
my.profiles.core.nix.enable = true; imports = [
my.profiles.core.packages.enable = true; ../profiles/core/core.nix
../profiles/core/nix.nix
];
documentation = { documentation = {
enable = lib.mkDefault false; enable = lib.mkDefault false;

View file

@ -1,16 +1,10 @@
{ self, ... }: { self, ... }:
let let
inherit (self.inputs) nixos-generators sops-nix; inherit (self.inputs) nixos-generators;
defaultModules = [ defaultModule = {
{ imports = [ ./base-config.nix ];
imports = [
./base-config.nix
sops-nix.nixosModules.sops
];
_module.args.inputs = self.inputs; _module.args.inputs = self.inputs;
} };
../profiles
];
in in
{ {
perSystem = perSystem =
@ -20,14 +14,16 @@ in
install-iso = nixos-generators.nixosGenerate { install-iso = nixos-generators.nixosGenerate {
system = "x86_64-linux"; system = "x86_64-linux";
inherit pkgs; inherit pkgs;
modules = defaultModules; modules = [ defaultModule ];
format = "install-iso"; format = "install-iso";
}; };
# install-sd-aarch64 = nixos-generators.nixosGenerate { # install-sd-aarch64 = nixos-generators.nixosGenerate {
# system = "aarch64-linux"; # system = "aarch64-linux";
# inherit pkgs; # inherit pkgs;
# modules = defaultModules; # modules = [
# defaultModule
# ];
# format = "sd-aarch64-installer"; # format = "sd-aarch64-installer";
# }; # };
}; };
@ -39,7 +35,8 @@ in
# { # {
# nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; # nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
# } # }
# ] ++ defaultModules; # defaultModule
# ];
# }; # };
#}; #};
} }

View file

@ -1,6 +1,7 @@
{ {
config, config,
lib, lib,
pkgs,
... ...
}: }:
let let

View file

@ -19,7 +19,6 @@ in
users.users.nixremote = { users.users.nixremote = {
isSystemUser = true; isSystemUser = true;
group = "nixremote"; group = "nixremote";
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGYSzDdxqaNHmaaLqEvOK/vB65zvqoCebI3Nxzgg5smq root@workman" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGYSzDdxqaNHmaaLqEvOK/vB65zvqoCebI3Nxzgg5smq root@workman"
]; ];

46
profiles/core/core.nix Normal file
View file

@ -0,0 +1,46 @@
{ pkgs, ... }:
{
# Packages
environment.systemPackages = with pkgs; [
bandwhich # bandwidth monitor
bind # dns tools (dig, etc)
borgbackup # backup tool
cryptsetup # luks volume management
delta # git diff viewer
fd # find replacement in rust
file # show file type
fzf # fuzzy finder
gettext # localization tools
git # version control
gptfdisk # disk partitioning tools
htop # process monitor
jq # json processor
killall # kill processes by name
lsof # list open files
mosh # mobile shell
mtr # network diagnostic tool
multipath-tools # disk multipathing tools (kpartx)
neovim # text editor
nmap # network scanner
nmon # performance monitor
ouch # de-/compression tool
pciutils # lspci
progress # show progress of coreutils commands
pv # pipe viewer
reptyr # reparent process to new terminal
rsync # remote file sync
screen # terminal multiplexer
sd # sed replacement
stress-ng # stress testing
tmux # terminal multiplexer
unzip # unzip tools
usbutils # lsusb
vim # text editor
wget # file downloader
whois # domain lookup
xcp # rust cp replacement
zip # zip tools
];
time.timeZone = "Europe/Berlin";
}

View file

@ -1,31 +1,23 @@
{ {
config, config,
lib, lib,
pkgs,
inputs,
... ...
}: }@args:
let let
cfg = config.my.profiles.core; cfg = config.my.profiles.core;
in in
{ {
imports = [
./kernel-modules.nix
./network.nix
./nix.nix
./packages.nix
./users.nix
];
options.my.profiles.core.enable = lib.mkEnableOption "core profile"; options.my.profiles.core.enable = lib.mkEnableOption "core profile";
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable (
my.profiles.core = { lib.mkMerge [
packages.enable = lib.mkDefault true; (import ./core.nix args)
kernel-modules.enable = lib.mkDefault true; (import ./modules.nix args)
network.enable = lib.mkDefault true; (import ./network.nix args)
nix.enable = lib.mkDefault true; (import ./nix.nix args)
users.enable = lib.mkDefault true; (import ./users.nix args)
}; ]
);
time.timeZone = "Europe/Berlin";
};
} }

View file

@ -1,21 +0,0 @@
{ config, lib, ... }:
let
cfg = config.my.profiles.core.kernel-modules;
in
{
options.my.profiles.core.kernel-modules.enable = lib.mkEnableOption "kernel module profile";
config = lib.mkIf cfg.enable {
boot.initrd.availableKernelModules = [
"ahci"
"e1000e"
"ehci_pci"
"nvme"
"sd_mod"
"uas"
"usbhid"
"usb_storage"
"xhci_pci"
];
};
}

15
profiles/core/modules.nix Normal file
View file

@ -0,0 +1,15 @@
_: {
boot.initrd = {
availableKernelModules = [
"ahci"
"e1000e"
"ehci_pci"
"nvme"
"sd_mod"
"uas"
"usbhid"
"usb_storage"
"xhci_pci"
];
};
}

View file

@ -1,11 +1,4 @@
{ config, lib, ... }: _: {
let
cfg = config.my.profiles.core.network;
in
{
options.my.profiles.core.network.enable = lib.mkEnableOption "core network profile";
config = lib.mkIf cfg.enable {
networking.networkmanager = { networking.networkmanager = {
enable = true; enable = true;
@ -16,5 +9,4 @@ in
"interface-name:virbr?" # libvirt default bridge "interface-name:virbr?" # libvirt default bridge
]; ];
}; };
};
} }

View file

@ -1,17 +1,5 @@
{ inputs, ... }:
{ {
config,
lib,
inputs,
...
}:
let
cfg = config.my.profiles.core.nix;
in
{
options.my.profiles.core.nix.enable = lib.mkEnableOption "core nix profile";
config = lib.mkIf cfg.enable {
nix = { nix = {
daemonCPUSchedPolicy = "idle"; daemonCPUSchedPolicy = "idle";
daemonIOSchedClass = "idle"; daemonIOSchedClass = "idle";
@ -45,5 +33,4 @@ in
enable = true; enable = true;
flake = "github:Stunkymonkey/nixos"; flake = "github:Stunkymonkey/nixos";
}; };
};
} }

View file

@ -1,55 +0,0 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.profiles.core.packages;
in
{
options.my.profiles.core.packages.enable = lib.mkEnableOption "core packages profile";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
bandwhich # bandwidth monitor
bind # dns tools (dig, etc)
borgbackup # backup tool
cryptsetup # luks volume management
delta # git diff viewer
fd # find replacement in rust
file # show file type
fzf # fuzzy finder
gettext # localization tools
git # version control
gptfdisk # disk partitioning tools
htop # process monitor
jq # json processor
killall # kill processes by name
lsof # list open files
mosh # mobile shell
mtr # network diagnostic tool
multipath-tools # disk multipathing tools (kpartx)
neovim # text editor
nmap # network scanner
nmon # performance monitor
ouch # de-/compression tool
pciutils # lspci
progress # show progress of coreutils commands
pv # pipe viewer
reptyr # reparent process to new terminal
rsync # remote file sync
screen # terminal multiplexer
sd # sed replacement
stress-ng # stress testing
tmux # terminal multiplexer
unzip # unzip tools
usbutils # lsusb
vim # text editor
wget # file downloader
whois # domain lookup
xcp # rust cp replacement
zip # zip tools
];
};
}

View file

@ -1,11 +1,5 @@
{ config, lib, ... }: { config, ... }:
let
cfg = config.my.profiles.core.users;
in
{ {
options.my.profiles.core.users.enable = lib.mkEnableOption "core users profile";
config = lib.mkIf cfg.enable {
sops.secrets."users/felix/password".neededForUsers = true; sops.secrets."users/felix/password".neededForUsers = true;
sops.secrets."users/felix/password" = { }; sops.secrets."users/felix/password" = { };
@ -38,5 +32,4 @@ in
users.groups.felix = { users.groups.felix = {
gid = 1000; gid = 1000;
}; };
};
} }