a
This commit is contained in:
parent
9272749b6f
commit
0f75981120
15 changed files with 129 additions and 31 deletions
43
hosts/anemone/default.nix
Normal file
43
hosts/anemone/default.nix
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{ config, inputs, modules, overlays, pkgs, ... }: {
|
||||
networking.hostName = "anemone";
|
||||
system.stateVersion = "23.11";
|
||||
time.timeZone = "Asia/Phnom_Penh";
|
||||
|
||||
nixpkgs.overlays = [ inputs.neovim-nightly.overlay ];
|
||||
age.secrets = {
|
||||
passwd.file = ../../secrets/passwd.age;
|
||||
#wg_hyacinth.file = ../../secrets/wg_blossom.age;
|
||||
#wpa_conf.file = ../../secrets/wpa_conf.age;
|
||||
};
|
||||
imports = with modules.system; [
|
||||
inputs.home-manager.nixosModule
|
||||
home-manager
|
||||
|
||||
audio
|
||||
base
|
||||
ccache
|
||||
corectrl
|
||||
flatpak
|
||||
greetd
|
||||
gui
|
||||
input
|
||||
kernel
|
||||
nix
|
||||
packages
|
||||
printing
|
||||
security
|
||||
snapper
|
||||
#wireguard
|
||||
|
||||
./filesystem.nix
|
||||
./kernel.nix
|
||||
./networking.nix
|
||||
|
||||
../../users/rin
|
||||
];
|
||||
|
||||
# For steam fhs-env
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
"openssl-1.1.1w"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue