diff options
author | ene <ene@sils.li> | 2023-02-01 21:33:11 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-03 17:34:11 +0100 |
commit | 871d3f95963eac25765427ecca9a8e4812071439 (patch) | |
tree | 5dcf241ece31050cf0c74219852242abe504e068 /services | |
parent | Build(flake): Added Flake.lock (diff) | |
download | nixos-config-871d3f95963eac25765427ecca9a8e4812071439.zip |
Feat: Split the config apart
Diffstat (limited to '')
-rw-r--r-- | services/nix/nix.nix (renamed from services/nix.nix) | 0 | ||||
-rw-r--r-- | services/printing/printing.nix | 4 | ||||
-rw-r--r-- | services/services.nix | 7 | ||||
-rw-r--r-- | services/zsh/custom_cursor.sh (renamed from services/custom_cursor.sh) | 0 | ||||
-rw-r--r-- | services/zsh/zsh-init.sh (renamed from services/zsh-init.sh) | 0 | ||||
-rw-r--r-- | services/zsh/zsh-prompt.sh (renamed from services/zsh-prompt.sh) | 0 | ||||
-rw-r--r-- | services/zsh/zsh.nix (renamed from services/zsh.nix) | 2 |
7 files changed, 12 insertions, 1 deletions
diff --git a/services/nix.nix b/services/nix/nix.nix index b94cfc95..b94cfc95 100644 --- a/services/nix.nix +++ b/services/nix/nix.nix diff --git a/services/printing/printing.nix b/services/printing/printing.nix new file mode 100644 index 00000000..d178e3b6 --- /dev/null +++ b/services/printing/printing.nix @@ -0,0 +1,4 @@ +{config, ...}: { + # Enable CUPS to print documents. + services.printing.enable = true; +} diff --git a/services/services.nix b/services/services.nix new file mode 100644 index 00000000..27e5086f --- /dev/null +++ b/services/services.nix @@ -0,0 +1,7 @@ +{config, ...}: { + imports = [ + ./zsh/zsh.nix + ./printing/printing.nix + ./nix/nix.nix + ]; +} diff --git a/services/custom_cursor.sh b/services/zsh/custom_cursor.sh index 9a6da012..9a6da012 100644 --- a/services/custom_cursor.sh +++ b/services/zsh/custom_cursor.sh diff --git a/services/zsh-init.sh b/services/zsh/zsh-init.sh index bc9af87a..bc9af87a 100644 --- a/services/zsh-init.sh +++ b/services/zsh/zsh-init.sh diff --git a/services/zsh-prompt.sh b/services/zsh/zsh-prompt.sh index 1f0f164b..1f0f164b 100644 --- a/services/zsh-prompt.sh +++ b/services/zsh/zsh-prompt.sh diff --git a/services/zsh.nix b/services/zsh/zsh.nix index b194ab6b..78387f91 100644 --- a/services/zsh.nix +++ b/services/zsh/zsh.nix @@ -53,7 +53,7 @@ in { interactiveShellInit = builtins.readFile ./zsh-init.sh; histSize = 9999999; histFile = "$XDG_DATA_HOME/zsh/history"; - autosuggentions = { + autosuggestions = { enable = true; }; }; |