diff --git a/components/base-server.nix b/components/base-server.nix new file mode 100644 index 0000000..5a8fdca --- /dev/null +++ b/components/base-server.nix @@ -0,0 +1,49 @@ +{ config, pkgs, ... }: +{ + # Bootloader. + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + # Enable networking + networking.networkmanager.enable = true; + + # Set your time zone. + time.timeZone = "Australia/Brisbane"; + + # Select internationalisation properties. + i18n.defaultLocale = "en_GB.UTF-8"; + + i18n.extraLocaleSettings = { + LC_ADDRESS = "en_AU.UTF-8"; + LC_IDENTIFICATION = "en_AU.UTF-8"; + LC_MEASUREMENT = "en_AU.UTF-8"; + LC_MONETARY = "en_AU.UTF-8"; + LC_NAME = "en_AU.UTF-8"; + LC_NUMERIC = "en_AU.UTF-8"; + LC_PAPER = "en_AU.UTF-8"; + LC_TELEPHONE = "en_AU.UTF-8"; + LC_TIME = "en_AU.UTF-8"; + }; + + # Allow unfree packages + nixpkgs.config.allowUnfree = true; + + # List packages installed in system profile. To search, run: + # $ nix search wget + environment.systemPackages = with pkgs; [ + # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + wget + btop + duf + sshed + nmap + fish + starship + thefuck + git + stow + ]; + + programs.fish.enable = true; + +} \ No newline at end of file diff --git a/components/user-kurtisa.nix b/components/user-kurtisa.nix index 4353e2e..75255dc 100644 --- a/components/user-kurtisa.nix +++ b/components/user-kurtisa.nix @@ -80,6 +80,10 @@ in vargix-os = "~/.vargix-os/vargix-os"; }; }; + programs.kdeconnect = { + enable = true; + package = pkgs.gnomeExtensions.gsconnect; + } programs.thefuck.enable = true; programs.starship = { enable = true;