wow
This commit is contained in:
parent
3adc5e9f73
commit
be184a26ff
12 changed files with 146 additions and 7 deletions
37
hosts/installer/default.nix
Normal file
37
hosts/installer/default.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
inputs,
|
||||
overlays,
|
||||
}:
|
||||
let
|
||||
inherit (inputs) nixpkgs;
|
||||
in
|
||||
nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
|
||||
modules = [
|
||||
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-plasma6.nix"
|
||||
|
||||
"${inputs.self}/modules/mizukios/base"
|
||||
|
||||
({ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
fastfetch
|
||||
git
|
||||
neovim
|
||||
|
||||
ghostty
|
||||
cryptsetup
|
||||
lvm2
|
||||
sbctl
|
||||
];
|
||||
|
||||
security.sudo.enable = false;
|
||||
|
||||
environment.etc.flake.source = "${inputs.self}";
|
||||
})
|
||||
];
|
||||
|
||||
specialArgs = {
|
||||
inherit inputs overlays;
|
||||
};
|
||||
}
|
||||
|
|
@ -15,7 +15,6 @@
|
|||
|
||||
cat = "bat --plain";
|
||||
|
||||
# NixOS 관련
|
||||
rebuild = "nr";
|
||||
update = "nix flake update";
|
||||
clean = "sudo nix-collect-garbage -d";
|
||||
|
|
|
|||
|
|
@ -8,11 +8,11 @@
|
|||
"${inputs.self}/modules/mizukios/features/fonts.nix"
|
||||
"${inputs.self}/modules/mizukios/features/packages.nix"
|
||||
"${inputs.self}/modules/mizukios/features/plasma.nix"
|
||||
"${inputs.self}/modules/mizukios/features/sound.nix"
|
||||
"${inputs.self}/modules/mizukios/features/system/sound.nix"
|
||||
"${inputs.self}/modules/mizukios/features/catppuccin.nix"
|
||||
"${inputs.self}/modules/mizukios/features/ssh.nix"
|
||||
"${inputs.self}/modules/mizukios/features/remote/ssh.nix"
|
||||
"${inputs.self}/modules/mizukios/features/steam.nix"
|
||||
"${inputs.self}/modules/mizukios/features/sunshine.nix"
|
||||
"${inputs.self}/modules/mizukios/features/remote/sunshine.nix"
|
||||
];
|
||||
|
||||
networking = {
|
||||
|
|
|
|||
|
|
@ -59,6 +59,8 @@
|
|||
};
|
||||
services.xserver.videoDrivers = [ "nvidia" ];
|
||||
|
||||
networking.interfaces.enp3s0.wakeOnLan.enable = true;
|
||||
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
enable32Bit = true;
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@
|
|||
"${inputs.self}/modules/home/devtool/ghostty.nix"
|
||||
"${inputs.self}/modules/home/devtool/zed.nix"
|
||||
"${inputs.self}/modules/home/vicinae.nix"
|
||||
"${inputs.self}/modules/home/fastfetch.nix"
|
||||
./config/shell.nix
|
||||
./config/plasma.nix
|
||||
"${inputs.self}/modules/home/discord/linux.nix"
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@ in
|
|||
'';
|
||||
|
||||
virtualHosts."plutos.dazzle.st".extraConfig = ''
|
||||
reverse_proxy epc.hikari.mizuki.arpa:3000
|
||||
reverse_proxy localhost:13000
|
||||
'';
|
||||
|
||||
virtualHosts."event.dazzle.st".extraConfig = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue