diff options
| author | Andrew <admonty1@protonmail.com> | 2025-08-30 19:58:04 -0400 |
|---|---|---|
| committer | Andrew <admonty1@protonmail.com> | 2025-08-30 19:58:04 -0400 |
| commit | f295618a66db269723c387c6d456d4118341fa89 (patch) | |
| tree | 82e5527a68e9c5fbc90b6e68fc4d8d4455ebf375 /configuration.nix | |
| parent | inline markdown rendering (diff) | |
| download | nixos-f295618a66db269723c387c6d456d4118341fa89.tar.gz nixos-f295618a66db269723c387c6d456d4118341fa89.tar.bz2 nixos-f295618a66db269723c387c6d456d4118341fa89.zip | |
phone link
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/configuration.nix b/configuration.nix index 17e41c9..b8e28a5 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,15 +1,12 @@ # Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). - { config, pkgs, inputs, ... -}: - -{ +}: { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix @@ -20,7 +17,7 @@ boot.loader.efi.canTouchEfiVariables = true; # zsh - environment.shells = with pkgs; [ fish ]; + environment.shells = with pkgs; [fish]; users.defaultUserShell = pkgs.fish; programs.fish.enable = true; @@ -57,7 +54,7 @@ "networkmanager" "wheel" ]; - packages = with pkgs; [ ]; + packages = with pkgs; []; }; # Allow unfree packages @@ -68,6 +65,10 @@ withUWSM = true; }; + programs.kdeconnect = { + enable = true; + }; + # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ @@ -101,7 +102,6 @@ settings.default_session = { user = "greeter"; }; - }; programs.regreet.enable = true; fonts.packages = with pkgs; [ |
