From 2d6fc9d038660cc9ae69ce6f689a7fb2369bb9b9 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 28 Mar 2023 09:01:52 +0100 Subject: [PATCH] Initial add of NixOS and home-manager configs, all controlled by vanguard-xenia.nix --- config/nixpkgs/home.nix | 31 ++++++++++ config/nixpkgs/neovim.nix | 10 +++ nixos/packages.nix | 5 ++ nixos/vanguard-xenia.nix | 127 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 173 insertions(+) create mode 100644 config/nixpkgs/home.nix create mode 100644 config/nixpkgs/neovim.nix create mode 100644 nixos/packages.nix create mode 100644 nixos/vanguard-xenia.nix diff --git a/config/nixpkgs/home.nix b/config/nixpkgs/home.nix new file mode 100644 index 00000000..ee169dc0 --- /dev/null +++ b/config/nixpkgs/home.nix @@ -0,0 +1,31 @@ +{ config, pkgs, ... }: + +{ + imports = [ + ./neovim.nix + ]; + # Home Manager needs a bit of information about you and the + # paths it should manage. + home.username = "xenia"; + home.homeDirectory = "/home/xenia"; + + # Let Home Manager install and manage itself. + programs.home-manager.enable = true; + + home.packages = with pkgs; [ + wezterm + git + zsh + starship + firefox + bitwarden + gcc + ]; + + programs.git = { + enable = true; + userName = "Evie Litherland-Smith"; + userEmail = "evie@xenia.me.uk"; + }; + +} diff --git a/config/nixpkgs/neovim.nix b/config/nixpkgs/neovim.nix new file mode 100644 index 00000000..f3184b00 --- /dev/null +++ b/config/nixpkgs/neovim.nix @@ -0,0 +1,10 @@ +{ config, pkgs, ... }: + +{ + home.packages = with pkgs; [ + neovim + python310Packages.pynvim + fzf + cargo + ]; +} diff --git a/nixos/packages.nix b/nixos/packages.nix new file mode 100644 index 00000000..3bacbd75 --- /dev/null +++ b/nixos/packages.nix @@ -0,0 +1,5 @@ +{ config, pkgs, ... }: + +{ + environment.systemPackages = with pkgs; []; +} diff --git a/nixos/vanguard-xenia.nix b/nixos/vanguard-xenia.nix new file mode 100644 index 00000000..60214edc --- /dev/null +++ b/nixos/vanguard-xenia.nix @@ -0,0 +1,127 @@ +# 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, ... }: + +let + home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz"; +in + +{ + imports = + [ + ./packages.nix + (import "${home-manager}/nixos") + ]; + + networking.hostName = "Vanguard"; # Define your hostname. + + # Enable networking + networking.networkmanager.enable = true; + # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. + + # Set your time zone. + time.timeZone = "Europe/London"; + + # Select internationalisation properties. + i18n.defaultLocale = "en_GB.UTF-8"; + + i18n.extraLocaleSettings = { + LC_ADDRESS = "en_GB.UTF-8"; + LC_IDENTIFICATION = "en_GB.UTF-8"; + LC_MEASUREMENT = "en_GB.UTF-8"; + LC_MONETARY = "en_GB.UTF-8"; + LC_NAME = "en_GB.UTF-8"; + LC_NUMERIC = "en_GB.UTF-8"; + LC_PAPER = "en_GB.UTF-8"; + LC_TELEPHONE = "en_GB.UTF-8"; + LC_TIME = "en_GB.UTF-8"; + }; + + # Enable the X11 windowing system. + services.xserver.enable = true; + + # Enable the KDE Plasma Desktop Environment. + services.xserver.displayManager.sddm.enable = true; + services.xserver.desktopManager.plasma5.enable = true; + + # Configure keymap in X11 + services.xserver = { + layout = "gb"; + xkbVariant = ""; + }; + + # Configure console keymap + console.keyMap = "uk"; + + # Enable CUPS to print documents. + services.printing.enable = true; + + # Enable sound with pipewire. + sound.enable = true; + hardware.pulseaudio.enable = false; + security.rtkit.enable = true; + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + }; + + # Define a user account. Don't forget to set a password with ‘passwd’. + users.users.xenia = { + isNormalUser = true; + description = "Evie Litherland-Smith"; + extraGroups = [ "networkmanager" "wheel" ]; + }; + + home-manager.users.xenia = { pkgs, ... }: { + imports = [ + /home/xenia/.config/nixpkgs/home.nix + ]; + home.stateVersion = "22.11"; + + }; + home-manager.useUserPackages = true; + home-manager.useGlobalPkgs = true; + + # Enable automatic login for the user. + services.xserver.displayManager.autoLogin.enable = true; + services.xserver.displayManager.autoLogin.user = "xenia"; + + # Allow unfree packages + nixpkgs.config.allowUnfree = true; + + # Some programs need SUID wrappers, can be configured further or are + # started in user sessions. + # programs.mtr.enable = true; + # programs.gnupg.agent = { + # enable = true; + # enableSSHSupport = true; + # }; + + # List services that you want to enable: + + # Enable the OpenSSH daemon. + services.openssh.enable = true; + + # Open ports in the firewall. + networking.firewall.allowedTCPPorts = [ 22 ]; + networking.firewall.allowedUDPPorts = [ 22 ]; + # Or disable the firewall altogether. + # networking.firewall.enable = false; + + # This value determines the NixOS release from which the default + # settings for stateful data, like file locations and database versions + # on your system were taken. It‘s perfectly fine and recommended to leave + # this value at the release version of the first install of this system. + # Before changing this value read the documentation for this option + # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). + system.stateVersion = "22.11"; # Did you read the comment? + + system.autoUpgrade = { + enable = true; + }; + +}