forked from natto1784/dotfiles
Restructuring
This commit is contained in:
42
Satori/stuff.nix
Normal file
42
Satori/stuff.nix
Normal file
@@ -0,0 +1,42 @@
|
||||
{lib, config, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./Stuff/sound.nix
|
||||
./Stuff/fonts.nix
|
||||
./Stuff/users.nix
|
||||
./Stuff/services.nix
|
||||
./Stuff/xorg.nix
|
||||
];
|
||||
time.timeZone = "Asia/Kolkata";
|
||||
environment = {
|
||||
sessionVariables = {
|
||||
QT_QPA_PLATFORMTHEME = "gtk3";
|
||||
QT_X11_NO_MITSHM="1";
|
||||
};
|
||||
};
|
||||
security={
|
||||
sudo.enable = false;
|
||||
doas = {
|
||||
enable = true;
|
||||
extraRules = [
|
||||
{
|
||||
users = [ "natto" ];
|
||||
keepEnv = true;
|
||||
persist = true;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
nix.gc = {
|
||||
automatic = false;
|
||||
dates = "20:15";
|
||||
};
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
programs = {
|
||||
fish.enable = true;
|
||||
dconf.enable = true;
|
||||
};
|
||||
nixpkgs.config.allowBroken = true;
|
||||
nix.extraOptions = ''experimental-features = nix-command flakes ca-references'';
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user