-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a88647d
commit f10a996
Showing
2 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,6 +107,8 @@ in | |
realtime = enabled; | ||
time = enabled; | ||
}; | ||
|
||
user.name = "bruddy"; | ||
}; | ||
|
||
nix.settings = { | ||
|