2024-05-02 23:43:48 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
inputs,
|
|
|
|
...
|
|
|
|
}: {
|
2024-01-31 02:44:15 +00:00
|
|
|
imports = [
|
|
|
|
# OS
|
|
|
|
../../nixos/profiles/laptop
|
|
|
|
../../nixos/profiles/common/opt-in/clash-meta-client
|
|
|
|
../../nixos/profiles/common/opt-in/gaming
|
|
|
|
|
|
|
|
# Hardware
|
|
|
|
./hardware-configuration.nix
|
2024-02-07 01:51:49 +00:00
|
|
|
./anti-feature.nix
|
2024-01-31 02:44:15 +00:00
|
|
|
../../nixos/profiles/common/opt-in/lanzaboote.nix
|
|
|
|
../../nixos/profiles/common/opt-in/impermanence.nix
|
|
|
|
../../nixos/profiles/common/opt-in/disko.nix
|
|
|
|
];
|
|
|
|
|
2024-04-22 14:34:20 +00:00
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
2024-02-11 14:10:03 +00:00
|
|
|
networking.hostName = "aristotle";
|
2024-01-31 02:44:15 +00:00
|
|
|
time.timeZone = "Asia/Shanghai";
|
|
|
|
_module.args.disks = ["/dev/nvme0n1"]; # Disko
|
2024-04-22 18:35:50 +00:00
|
|
|
system.stateVersion = "23.11";
|
2024-02-13 11:19:55 +00:00
|
|
|
|
2024-02-16 09:07:56 +00:00
|
|
|
services.tailscale = {
|
|
|
|
enable = true;
|
|
|
|
openFirewall = true;
|
|
|
|
};
|
2024-02-29 19:17:14 +00:00
|
|
|
|
|
|
|
# Stuff that I only want on my main machine
|
|
|
|
home-manager.users.guanranwang = {
|
|
|
|
imports = map (n: ../../home/applications/${n}) [
|
|
|
|
"spotify/spicetify.nix"
|
|
|
|
"thunderbird"
|
|
|
|
"ydict"
|
|
|
|
];
|
|
|
|
|
2024-04-23 08:08:11 +00:00
|
|
|
home.packages = with pkgs;
|
|
|
|
[
|
|
|
|
amberol
|
|
|
|
fractal
|
|
|
|
gnome.gnome-calculator
|
|
|
|
hyperfine
|
|
|
|
mousai
|
|
|
|
]
|
2024-04-23 10:35:58 +00:00
|
|
|
++ (with inputs.self.packages.${pkgs.stdenv.hostPlatform.system}.scripts; [
|
2024-04-23 08:08:11 +00:00
|
|
|
lofi
|
|
|
|
]);
|
2024-02-29 19:17:14 +00:00
|
|
|
|
|
|
|
programs.obs-studio.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
# for udev rules
|
|
|
|
programs.adb.enable = true;
|
2024-01-31 02:44:15 +00:00
|
|
|
}
|