diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-12-12 00:27:37 +0100 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-12-12 00:27:37 +0100 |
commit | fb581407fe0a996a8619cdbe74cb0dda0dbb8194 (patch) | |
tree | ff3e0e608945b01183b4eb3df34b7464ce7ca647 /old/configuration.nix | |
parent | Include hardware config (diff) | |
download | Rory-Open-Architecture-fb581407fe0a996a8619cdbe74cb0dda0dbb8194.tar.xz |
Add wrapper script
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
Diffstat (limited to 'old/configuration.nix')
-rw-r--r-- | old/configuration.nix | 117 |
1 files changed, 0 insertions, 117 deletions
diff --git a/old/configuration.nix b/old/configuration.nix deleted file mode 100644 index 1d99ef6..0000000 --- a/old/configuration.nix +++ /dev/null @@ -1,117 +0,0 @@ -{ config, pkgs, ... }: - -{ - imports = - [ - ./hardware-configuration.nix - ./vim.nix - ]; - - boot = { - loader = { - grub = { - enable = true; - version = 2; - device = "/dev/sda"; # nodev for EFI only - - # EFI - efiSupport = false; - efiInstallAsRemovable = false; - }; - }; - }; - - networking = { - hostName = "RoryNix"; - networkmanager.enable = true; - wireless.enable = false; - - firewall = { - enable = false; - # allowedTCPPorts = [ ... ]; - # allowedUDPPorts = [ ... ]; - }; - }; - - time.timeZone = "Europe/Brussels"; - i18n.defaultLocale = "en_US.UTF-8"; - - services = { - xserver = { - enable = true; - videoDrivers = [ "intel" ]; - desktopManager.gnome.enable = true; - libinput.enable = true; - layout = "us"; - modules = [ pkgs.xorg.xf86videointel ]; - }; - gnome = { - - core-developer-tools.enable = false; - core-utilities.enable = false; - tracker-miners.enable = false; - tracker.enable = false; - }; - - printing.enable = false; - openssh = { - enable = true; - extraConfig = '' - MaxAuthTries 32 - ''; - }; - }; - security.sudo.wheelNeedsPassword = false; - nixpkgs.config.allowUnfree = true; - - sound.enable = true; - hardware.pulseaudio.enable = true; - - users.users.Rory = { - isNormalUser = true; - extraGroups = [ "wheel" ]; - packages = with pkgs; [ - #xterm - gnomeExtensions.vitals - gnomeExtensions.runcat - ]; - initialPassword = "password"; - }; - - environment.systemPackages = with pkgs; [ - wget - neofetch - lnav - pciutils - zsh - gnome-console - feh - git - lsd - #nerdfonts - #element-web - sshfs - cinnamon.nemo - firefox-bin - kitty.terminfo - glxinfo - #epiphany - # Various extensions... - # - Gnome - #gnomeExtensions.vitals - #gnomeExtensions.runcat - # - Dont work on gnome 43: - #gnomeExtensions.undecorate - #gnomeExtensions.inactivity - #gnomeExtensions.left-clock - # - Vim - vimPlugins.vim-nix - ]; - fonts.fonts = with pkgs; [ - (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) - ]; - - - system.stateVersion = "22.11"; # DO NOT EDIT! -} - |