mirror of
https://github.com/semere-meb/dotfiles-nix.git
synced 2026-08-03 10:24:36 +00:00
initial dendritic migration
This commit is contained in:
parent
86fe70288b
commit
168633cf07
12 changed files with 254 additions and 147 deletions
19
hosts/nabro/configuration.nix
Normal file
19
hosts/nabro/configuration.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../../modules
|
||||
];
|
||||
|
||||
networking.hostName = "nabro";
|
||||
|
||||
# Enable host-specific feature branches (dendrites)
|
||||
dotfiles = {
|
||||
core.enable = true;
|
||||
user.enable = true;
|
||||
desktop.enable = true;
|
||||
dev.enable = true;
|
||||
shell.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
@ -1,93 +0,0 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
networking.hostName = "sys";
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
services.power-profiles-daemon.enable = true;
|
||||
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
pulse.enable = true;
|
||||
alsa.enable = true;
|
||||
jack.enable = true;
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/Berlin";
|
||||
users.users.him = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"networkmanager"
|
||||
];
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
pamixer
|
||||
brightnessctl
|
||||
wl-clipboard
|
||||
|
||||
gcc
|
||||
gnumake
|
||||
clang-tools
|
||||
lldb
|
||||
python3
|
||||
uv
|
||||
ruff
|
||||
ty
|
||||
|
||||
nil
|
||||
nixd
|
||||
|
||||
git
|
||||
wget
|
||||
tree
|
||||
tealdeer
|
||||
gnupg
|
||||
pass
|
||||
p7zip
|
||||
wmenu
|
||||
fnott
|
||||
|
||||
btop
|
||||
helix
|
||||
foot
|
||||
firefox
|
||||
tor-browser
|
||||
];
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
nerd-fonts.jetbrains-mono
|
||||
];
|
||||
|
||||
programs.dwl.enable = true;
|
||||
programs.dwl.package = pkgs.dwl.override {
|
||||
configH = ./dwl-config.h;
|
||||
};
|
||||
|
||||
hardware.graphics.enable = true;
|
||||
security.polkit.enable = true;
|
||||
|
||||
nix.settings.experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
|
||||
system.stateVersion = "26.05";
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue