Files
nix/hosts/arrakis/default.nix
T
Miguel Palhas 664df9210d Adding asdf
2024-10-06 11:10:51 +01:00

50 lines
1012 B
Nix

{
inputs,
pkgs,
config,
...
}:
let
tuigreet = "${pkgs.greetd.tuigreet}/bin/tuigreet";
hyprland-session = "${pkgs.hyprland}/share/wayland-sessions";
in
{
imports = [
./hardware-configuration.nix
../common/global
../common/features/networking.nix
../common/features/nvidia.nix
../common/features/hyprland.nix
../common/features/pipewire.nix
../common/features/docker.nix
../common/features/fonts.nix
../common/features/syncthing.nix
];
networking.hostName = "arrakis";
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
system.stateVersion = "24.05";
programs.zsh.enable = true;
users.users.naps62 = {
isNormalUser = true;
description = "Miguel Palhas";
extraGroups = [
"networkmanager"
"input"
"wheel"
"docker"
];
shell = pkgs.zsh;
initialHashedPassword = "$y$j9T$uRTzF/sBdrqVGZTRhPuR00$wgLgEGlq.lEmlCPiy69jkbtfC9HKpyaVPDHDdBGtE5D";
};
}