2024-06-05 20:52:52 +02:00
|
|
|
{ config, inputs, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
programs.hyprland.enable = true;
|
|
|
|
users.defaultUserShell = pkgs.zsh;
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
programs.gnupg.agent.enable = true;
|
|
|
|
boot.initrd.luks.gpgSupport = true;
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
extraSpecialArgs = {inherit inputs;};
|
|
|
|
users = {
|
|
|
|
"joy" = import ./../../home;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
users.users.joy = {
|
|
|
|
isNormalUser = true;
|
|
|
|
description = "joy";
|
2024-06-18 17:56:00 +02:00
|
|
|
extraGroups = [ "wheel" "docker" ];
|
2024-06-05 20:52:52 +02:00
|
|
|
};
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes"];
|
|
|
|
|
|
|
|
time.timeZone = "Europe/Zurich";
|
|
|
|
|
|
|
|
virtualisation.docker.enable = true;
|
|
|
|
services.devmon.enable = true;
|
|
|
|
services.udisks2.enable = true;
|
|
|
|
services.gvfs.enable = true;
|
|
|
|
|
2024-07-01 07:50:23 +02:00
|
|
|
programs.nix-ld.enable = true;
|
|
|
|
|
2024-06-05 20:52:52 +02:00
|
|
|
boot.binfmt.registrations.appimage = {
|
|
|
|
wrapInterpreterInShell = false;
|
|
|
|
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
|
|
|
|
recognitionType = "magic";
|
|
|
|
offset = 0;
|
|
|
|
mask = ''\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff'';
|
|
|
|
magicOrExtension = ''\x7fELF....AI\x02'';
|
|
|
|
};
|
|
|
|
|
|
|
|
system.stateVersion = "23.11";
|
|
|
|
|
|
|
|
}
|