Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Dec 9, 2024
1 parent a88647d commit f10a996
Show file tree
Hide file tree
Showing 2 changed files with 101 additions and 0 deletions.
99 changes: 99 additions & 0 deletions homes/x86_64-linux/bruddy@bruddynix/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
{
config,
lib,
namespace,
...
}:
let
inherit (lib.${namespace}) enabled;
in
{
khanelinix = {
user = {
enable = true;
# inherit (config.snowfallorg.user) name;
name = "bruddy";
};

programs = {
graphical = {
browsers = {
firefox = {
gpuAcceleration = true;
hardwareDecoding = true;
settings = {
# "dom.ipc.processCount.webIsolated" = 9;
# "dom.maxHardwareConcurrency" = 16;
"media.av1.enabled" = false;
# "media.ffvpx.enabled" = false;
# "media.hardware-video-decoding.force-enabled" = true;
"media.hardwaremediakeys.enabled" = true;
};
};
};
};

terminal = {
tools = {
git = {
enable = true;
};

run-as-service = enabled;

ssh = {
enable = true;

authorizedKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEpfTVxQKmkAYOrsnroZoTk0LewcBIC4OjlsoJY6QbB0"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBG8l3jQ2EPLU+BlgtaQZpr4xr97n2buTLAZTxKHSsD"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM7UBwfd7+K0mdkAIb2TE6RzMu6L4wZnG/anuoYqJMPB"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJAZIwy7nkz8CZYR/ZTSNr+7lRBW2AYy1jw06b44zaID"
];
};
};
};
};

services = {
mpd = {
musicDirectory = "nfs://austinserver.local/mnt/user/data/media/music";
};

# sops = {
# enable = true;
# defaultSopsFile = lib.snowfall.fs.get-file "secrets/khanelinix/khaneliman/default.yaml";
# sshKeyPaths = [ "${config.home.homeDirectory}/.ssh/id_ed25519" ];
# };
};

system = {
xdg = enabled;
};

suites = {
art = enabled;
business = enabled;
common = enabled;
desktop = enabled;

development = {
enable = true;

gameEnable = true;
nixEnable = true;
};

emulation = enabled;
games = enabled;
music = enabled;
networking = enabled;
photo = enabled;
video = enabled;
};

theme.catppuccin = enabled;
};

home.stateVersion = "24.11";
}
2 changes: 2 additions & 0 deletions systems/x86_64-linux/bruddynix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ in
realtime = enabled;
time = enabled;
};

user.name = "bruddy";
};

nix.settings = {
Expand Down

0 comments on commit f10a996

Please sign in to comment.