Some checks failed
/ build-host (map[host:beefcake]) (push) Successful in 58s
/ build-host (map[host:dragon]) (push) Successful in 1m18s
/ build-host (map[host:flipflop]) (push) Successful in 1m9s
/ build-host (map[host:foxtrot]) (push) Successful in 1m17s
/ build-host (map[host:rascal]) (push) Successful in 31s
/ build-host (map[host:router]) (push) Successful in 46s
/ build-devshell (push) Successful in 18s
/ flake-check (push) Failing after 3m48s
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{
|
|
diskoConfigurations,
|
|
# hardware, # do NOT use nixos-hardware with jovian config
|
|
...
|
|
}:
|
|
{
|
|
system.stateVersion = "24.11";
|
|
networking = {
|
|
hostName = "dragon";
|
|
wifi.enable = true;
|
|
};
|
|
hardware.bluetooth.enable = true;
|
|
boot = {
|
|
# kernelPackages = pkgs.linuxPackages_latest; # do NOT use with jovian config
|
|
loader = {
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot.enable = true;
|
|
};
|
|
};
|
|
imports = [
|
|
(diskoConfigurations.unencrypted { disk = "/dev/nvme0n1"; })
|
|
];
|
|
|
|
lyte.desktop.enable = true;
|
|
home-manager.users.daniel = {
|
|
lyte = {
|
|
useOutOfStoreSymlinks.enable = true;
|
|
shell = {
|
|
enable = true;
|
|
learn-jujutsu-not-git.enable = true;
|
|
};
|
|
desktop.enable = true;
|
|
};
|
|
};
|
|
|
|
programs.steam.enable = true;
|
|
jovian = {
|
|
decky-loader = {
|
|
enable = true;
|
|
};
|
|
steam = {
|
|
autoStart = true;
|
|
updater = {
|
|
splash = "jovian";
|
|
};
|
|
};
|
|
hardware = {
|
|
has.amd.gpu = true;
|
|
};
|
|
devices = {
|
|
steamdeck = {
|
|
enable = true;
|
|
autoUpdate = true;
|
|
# enableGyroDsuService = true;
|
|
};
|
|
};
|
|
};
|
|
}
|