diff options
| author | Akshay Nair <phenax5@gmail.com> | 2021-09-14 13:37:00 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2021-09-14 13:37:00 +0530 |
| commit | 69d464818c7a6e599771fe67d407c163c8a7a0c4 (patch) | |
| tree | b361000d0cbfa4609cc66a8a1c707e63d859990d /configuration.nix | |
| parent | 4d89e28f26075ecf3a8d132fe5177eecef99b565 (diff) | |
| download | nixos-config-69d464818c7a6e599771fe67d407c163c8a7a0c4.tar.gz nixos-config-69d464818c7a6e599771fe67d407c163c8a7a0c4.zip | |
config changes sync
Diffstat (limited to '')
| -rw-r--r-- | configuration.nix | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/configuration.nix b/configuration.nix index b6c0c6e..e60fd23 100644 --- a/configuration.nix +++ b/configuration.nix @@ -26,6 +26,26 @@ in enable = true; }; + hardware.bluetooth.enable = false; + #hardware.bluetooth.package = pkgs.bluezFull; + + services.monero = { + enable = false; + dataDir = "/var/lib/monero"; + # mining.enable = { + # enable = false; + # threads = 2; + # }; + rpc = { + address = "127.0.0.1"; + port = 18081; + # user = "hexyman"; + # password = ""; + }; + }; + + # Enable sound. + sound.enable = true; services.jack = { jackd.enable = true; alsa.enable = false; @@ -86,19 +106,6 @@ in cozette noto-fonts-emoji ]; - # nix-shell -p actkbd --run "sudo actkbd -n -s -d /dev/input/event#" - #services.actkbd = { - #enable = true; - #bindings = [ - #{ keys = [ 224 ]; events = [ "key" ]; command = "/run/current-system/sw/bin/light -A 10"; } - #{ keys = [ 225 ]; events = [ "key" ]; command = "/run/current-system/sw/bin/light -U 10"; } - #]; - #}; - # Enable CUPS to print documents. - # services.printing.enable = true; - - # Enable sound. - sound.enable = true; nix.autoOptimiseStore = true; nix.gc = { |
