mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-24 21:55:28 -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 = [
|
ensureUsers = [
|
||||||
{
|
{
|
||||||
name = "nextcloud";
|
name = "nextcloud";
|
||||||
ensureDBOwnership = true;
|
ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
authentication = lib.mkForce ''
|
authentication = lib.mkForce ''
|
||||||
|
|
|
@ -18,10 +18,6 @@
|
||||||
enableKwallet = true;
|
enableKwallet = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.udev.packages = [
|
|
||||||
pkgs.android-udev-rules
|
|
||||||
];
|
|
||||||
|
|
||||||
# Some programs look for session variables to store config files at
|
# Some programs look for session variables to store config files at
|
||||||
# (Looking at you home-manager yazi)
|
# (Looking at you home-manager yazi)
|
||||||
environment.sessionVariables = rec {
|
environment.sessionVariables = rec {
|
||||||
|
@ -63,7 +59,7 @@
|
||||||
boot.loader.systemd-boot.configurationLimit = 5;
|
boot.loader.systemd-boot.configurationLimit = 5;
|
||||||
|
|
||||||
nix.settings.auto-optimise-store = true;
|
nix.settings.auto-optimise-store = true;
|
||||||
nixpkgs.config.allowUnfree = true; # required for discord
|
nixpkgs.config.allowUnfree = true;
|
||||||
nix.gc = {
|
nix.gc = {
|
||||||
automatic = true;
|
automatic = true;
|
||||||
options = "--delete-generations 8d";
|
options = "--delete-generations 8d";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, user, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -7,9 +7,6 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.adb.enable = true;
|
|
||||||
users.users.${user}.extraGroups = [ "adbusers" ];
|
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
firewall = {
|
firewall = {
|
||||||
checkReversePath = "loose";
|
checkReversePath = "loose";
|
||||||
|
|
|
@ -1,14 +1,10 @@
|
||||||
{ config, user, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{ imports = [
|
||||||
imports = [
|
|
||||||
(import ./../../modules/xrdp.nix)
|
(import ./../../modules/xrdp.nix)
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.adb.enable = true;
|
|
||||||
users.users.${user}.extraGroups = [ "adbusers" ];
|
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
|
||||||
networking.hosts = {
|
networking.hosts = {
|
||||||
|
|
Loading…
Reference in a new issue