added qt again
This commit is contained in:
parent
283d1de8e0
commit
9d332191ea
2 changed files with 31 additions and 52 deletions
|
@ -1,25 +1,30 @@
|
|||
{ config, inputs, pkgs, lib, ... }:
|
||||
{
|
||||
# allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
# Time Zone
|
||||
time.timeZone = "Europe/Zurich";
|
||||
# Select internationalisation properties.
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
console.keyMap = "de";
|
||||
# enable flakes
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
# reduce file size used & automatic garbage collector
|
||||
nix.settings.auto-optimise-store = true;
|
||||
nix.gc = {
|
||||
automatic = true;
|
||||
options = "--delete-older-than 14d";
|
||||
nix = {
|
||||
settings = {
|
||||
# enable flakes
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
# reduce file size used & automatic garbage collector
|
||||
auto-optimise-store = true;
|
||||
};
|
||||
gc = {
|
||||
automatic = true;
|
||||
options = "--delete-older-than 14d";
|
||||
};
|
||||
# required for nix-direnv to work and have environments not garbage collected
|
||||
extraOptions = ''
|
||||
keep-outputs = true
|
||||
keep-derivations = true
|
||||
'';
|
||||
};
|
||||
# required for nix-direnv to work and have environments not garbage collected
|
||||
nix.extraOptions = ''
|
||||
keep-outputs = true
|
||||
keep-derivations = true
|
||||
'';
|
||||
|
||||
security.sudo.package = pkgs.sudo.override { withInsults = true; };
|
||||
security.polkit.enable = true;
|
||||
programs.kdeconnect.enable = true;
|
||||
|
@ -45,11 +50,6 @@
|
|||
awesome.enable = true;
|
||||
newsboat.enable = true;
|
||||
emacs.enable = true;
|
||||
#git = {
|
||||
# enable = true;
|
||||
# userName = "vali"; userEmail = "valentin@kaas.cc";
|
||||
# defaultBranch = "main";
|
||||
#};
|
||||
fish.enable = true;
|
||||
};
|
||||
services = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue