summaryrefslogtreecommitdiff
path: root/modules/services.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-10-03 03:29:21 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2023-10-03 03:29:21 -0600
commit8aacb14fcab1ef1efd0458fb4a97e81ec852f472 (patch)
treea7772c1ffdc1cfa95fd88456be91dce97bc27f64 /modules/services.nix
parent6717ada06dab28cfa70784556cd235d9de2ad874 (diff)
i've gone mad with power
/ attempted config from misterio77 to fix inputs errors // this created the default.nix files and commented out block in flake.nix // didn't work, misterio is insane / but misterio's nix-colors github tells you to pass it as a special arg into home-manager // was confused for a bit but got it as an extraSpecialArg cause of module bullshit /// good thing i had that old note or i'd have been stuck / now the inputs pass into home-manager // hoping to find a more elegant passthrough format / oh also moved home-manager's modules to modules folder because misterio does // probably because they're crazy but also because they've gone so deep it's somehow necessary for anything to work /// idk how or why, should have something to do with replacing/following default nix format? //// thus the default.nix files to add/override defaults? this is my longest commit message ever
Diffstat (limited to 'modules/services.nix')
-rw-r--r--modules/services.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/modules/services.nix b/modules/services.nix
deleted file mode 100644
index 336d132..0000000
--- a/modules/services.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{ config, pkgs, ... }:
-{
- services = {
- pipewire = {
- enable = true;
- alsa.enable = true;
- pulse.enable = true;
- };
- spotifyd.enable = true;
-
- #FOR: sway
- dbus.enable = true;
-
- #FROM: configuration.nix
- # localtimed.enable = true;
- xserver = {
- # Enable the X11 windowing system.
- enable = true;
-
- # Enable touchpad support (enabled default in most desktopManager).
- libinput.enable = true;
-
- # Configure keymap in X11
- # layout = "us";
- # xkbOptions = "eurosign:e,caps:escape";
-
- # Enable the Plasma 5 Desktop Environment.
- desktopManager.plasma5.enable = true;
- displayManager = {
- sddm.enable = true;
- defaultSession = "plasmawayland";
- };
- };
-
- # Enable CUPS to print documents.
- printing = {
- enable = true;
- drivers = with pkgs; [ epson-escpr gutenprint ];
- };
- avahi = {
- enable = true;
- nssmdns = true;
- # for a WiFi printer
- openFirewall = true;
- };
-
- # Enable the OpenSSH daemon.
- # openssh.enable = true;
- };
-}