mirror of
https://github.com/librephoenix/nixos-config
synced 2025-10-18 09:34:00 +05:30
Haven't updated these readme's in a long time..
This commit is contained in:
parent
44e854f32e
commit
b44aeb9150
15 changed files with 212 additions and 290 deletions
61
hosts/TEMPLATE/configuration.nix
Normal file
61
hosts/TEMPLATE/configuration.nix
Normal file
|
@ -0,0 +1,61 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
config = {
|
||||
systemSettings = {
|
||||
# users
|
||||
users = [ "USERNAME" ];
|
||||
adminUsers = [ "USERNAME" ];
|
||||
|
||||
# hardware
|
||||
cachy.enable = true;
|
||||
bluetooth.enable = true;
|
||||
powerprofiles.enable = true;
|
||||
tlp.enable = false;
|
||||
printing.enable = true;
|
||||
|
||||
# software
|
||||
flatpak.enable = false;
|
||||
gaming.enable = false;
|
||||
virtualization = {
|
||||
docker.enable = false;
|
||||
virtualMachines.enable = false;
|
||||
};
|
||||
brave.enable = true;
|
||||
|
||||
# wm
|
||||
hyprland.enable = true;
|
||||
|
||||
# dotfiles
|
||||
dotfilesDir = "/etc/nixos";
|
||||
|
||||
# security
|
||||
security = {
|
||||
automount.enable = true;
|
||||
blocklist.enable = true;
|
||||
doas.enable = true;
|
||||
firejail.enable = false; # TODO setup firejail profiles
|
||||
firewall.enable = true;
|
||||
gpg.enable = true;
|
||||
openvpn.enable = true;
|
||||
sshd.enable = false;
|
||||
};
|
||||
|
||||
# style
|
||||
stylix = {
|
||||
enable = true;
|
||||
theme = "orichalcum";
|
||||
};
|
||||
};
|
||||
|
||||
users.users.USERNAME.description = "NAME";
|
||||
home-manager.users.USERNAME.userSettings = {
|
||||
name = "NAME";
|
||||
email = "EMAIL";
|
||||
};
|
||||
|
||||
## EXTRA CONFIG GOES HERE
|
||||
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue