hosts/anemone: init
This commit is contained in:
parent
1ba66868be
commit
1700e735f6
5 changed files with 143 additions and 0 deletions
44
hosts/anemone/default.nix
Normal file
44
hosts/anemone/default.nix
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
{ 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;
|
||||
};
|
||||
|
||||
imports = with modules.system; [
|
||||
inputs.home-manager.nixosModule
|
||||
home-manager
|
||||
|
||||
audio
|
||||
base
|
||||
bluetooth
|
||||
ccache
|
||||
corectrl
|
||||
flatpak
|
||||
greetd
|
||||
gui
|
||||
input
|
||||
kernel
|
||||
nix
|
||||
packages
|
||||
printing
|
||||
security
|
||||
snapper
|
||||
|
||||
./filesystem.nix
|
||||
./kernel.nix
|
||||
./networking.nix
|
||||
|
||||
../../users/rin
|
||||
];
|
||||
|
||||
programs.hyprland.enable = true;
|
||||
|
||||
# For steam fhs-env
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
"openssl-1.1.1w"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue