mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-24 13:45:29 -08:00
Compare commits
No commits in common. "e34475b4b16e84d2ac268f1f7a7a74c852ae2188" and "3576a082176994f952a3a3dedd74605b8ecc136c" have entirely different histories.
e34475b4b1
...
3576a08217
4 changed files with 5 additions and 16 deletions
|
@ -59,7 +59,7 @@
|
|||
ensureUsers = [
|
||||
{
|
||||
name = "nextcloud";
|
||||
ensureDBOwnership = true;
|
||||
ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES";
|
||||
}
|
||||
];
|
||||
authentication = lib.mkForce ''
|
||||
|
|
|
@ -18,10 +18,6 @@
|
|||
enableKwallet = true;
|
||||
};
|
||||
|
||||
services.udev.packages = [
|
||||
pkgs.android-udev-rules
|
||||
];
|
||||
|
||||
# Some programs look for session variables to store config files at
|
||||
# (Looking at you home-manager yazi)
|
||||
environment.sessionVariables = rec {
|
||||
|
@ -63,7 +59,7 @@
|
|||
boot.loader.systemd-boot.configurationLimit = 5;
|
||||
|
||||
nix.settings.auto-optimise-store = true;
|
||||
nixpkgs.config.allowUnfree = true; # required for discord
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nix.gc = {
|
||||
automatic = true;
|
||||
options = "--delete-generations 8d";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, user, ... }:
|
||||
{ config, ... }:
|
||||
|
||||
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
|||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
programs.adb.enable = true;
|
||||
users.users.${user}.extraGroups = [ "adbusers" ];
|
||||
|
||||
networking = {
|
||||
firewall = {
|
||||
checkReversePath = "loose";
|
||||
|
|
|
@ -1,14 +1,10 @@
|
|||
{ config, user, ... }:
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
{ imports = [
|
||||
(import ./../../modules/xrdp.nix)
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
programs.adb.enable = true;
|
||||
users.users.${user}.extraGroups = [ "adbusers" ];
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
|
||||
networking.hosts = {
|
||||
|
|
Loading…
Reference in a new issue