restructure
This commit is contained in:
parent
d7bd686648
commit
eecb15a4ec
50 changed files with 281 additions and 564 deletions
|
@ -6,17 +6,14 @@
|
|||
|
||||
networking.hostName = "akarso";
|
||||
|
||||
# Add user to surface control group for surface linux
|
||||
users.users.twoneis.extraGroups = [ "surface-control" ];
|
||||
|
||||
# Bootloader.
|
||||
boot.loader = {
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
# Enable OpenGL
|
||||
hardware.opengl = {
|
||||
enable = true;
|
||||
driSupport = true;
|
||||
|
@ -36,17 +33,6 @@
|
|||
surface-control.enable = true;
|
||||
};
|
||||
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
};
|
||||
|
||||
# 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 = "23.05"; # Did you read the comment?
|
||||
system.stateVersion = "23.05";
|
||||
|
||||
}
|
||||
|
|
|
@ -1,36 +1,31 @@
|
|||
{ config, lib, modulesPath, ... }: {
|
||||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/4ecc3b27-016f-4416-a819-bd0998fc993f";
|
||||
fsType = "ext4";
|
||||
{ config, lib, ... }: {
|
||||
boot = {
|
||||
initrd = {
|
||||
availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" ];
|
||||
kernelModules = [ ];
|
||||
};
|
||||
kernelModules = [ "kvm-intel" ];
|
||||
extraModulePackages = [ ];
|
||||
};
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/0721-3632";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
fileSystems."/sd" = {
|
||||
device = "/dev/disk/by-uuid/b3faf000-8792-4fca-916a-5965c0cb8186";
|
||||
fsType = "ext4";
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-uuid/4ecc3b27-016f-4416-a819-bd0998fc993f";
|
||||
fsType = "ext4";
|
||||
};
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-uuid/0721-3632";
|
||||
fsType = "vfat";
|
||||
};
|
||||
"/ext" = {
|
||||
device = "/dev/disk/by-uuid/b3faf000-8792-4fca-916a-5965c0cb8186";
|
||||
fsType = "ext4";
|
||||
};
|
||||
};
|
||||
|
||||
swapDevices = [ { device = "/dev/disk/by-uuid/b35abec3-ff20-4b3b-b953-e36f2df719cb"; } ];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
# still possible to use this option, but it's recommended to use it in conjunction
|
||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.wlp0s20f3.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
|
|
|
@ -1,6 +1,16 @@
|
|||
{ ... }: {
|
||||
minimal = false;
|
||||
full = true;
|
||||
|
||||
withAudio = true;
|
||||
withBluetooth = true;
|
||||
withNvidia = false;
|
||||
|
||||
withNiri = true;
|
||||
withGnome = false;
|
||||
|
||||
withVM = false;
|
||||
withContainers = false;
|
||||
withDistrobox = false;
|
||||
withGames = false;
|
||||
}
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
./hardware-config.nix
|
||||
];
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_zen;
|
||||
|
||||
networking.hostName = "creosote";
|
||||
|
||||
boot.loader = {
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
}
|
|
@ -1,36 +0,0 @@
|
|||
{ config, lib, modulesPath, ... }: {
|
||||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "usbhid" "usb_storage" "ums_realtek" "sd_mod" "sdhci_pci" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/4a496297-dd6f-42d8-9e1f-56149a0166ea";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/D976-03E3";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
swapDevices = [
|
||||
{ device = "/dev/disk/by-uuid/3a785c6a-7f59-4647-9a84-f2e65d03997b"; }
|
||||
];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
# still possible to use this option, but it's recommended to use it in conjunction
|
||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.enp2s0.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.enp3s0.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
|
@ -1,7 +1,6 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
./hardware-config.nix
|
||||
./nvidia.nix
|
||||
./options.nix
|
||||
];
|
||||
|
||||
|
@ -30,11 +29,6 @@
|
|||
driSupport32Bit = true;
|
||||
};
|
||||
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
};
|
||||
|
||||
# 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
|
||||
|
|
|
@ -1,8 +1,16 @@
|
|||
{ ... }: {
|
||||
minimal = false;
|
||||
full = true;
|
||||
|
||||
withAudio = true;
|
||||
withBluetooth = true;
|
||||
withNvidia = true;
|
||||
|
||||
withNiri = true;
|
||||
withGnome = false;
|
||||
withNvidia = true;
|
||||
|
||||
withVM = false;
|
||||
withContainers = false;
|
||||
withDistrobox = false;
|
||||
withGames = false;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ ... }: {
|
||||
{ lib, config, ... }: lib.mkIf(config.withAudio) {
|
||||
# Enable sound with pipewire.
|
||||
sound.enable = false;
|
||||
hardware.pulseaudio.enable = false;
|
8
modules/bluetooth/default.nix
Normal file
8
modules/bluetooth/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ lib, config, ... }: lib.mkIf(config.withBluetooth) {
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
};
|
||||
|
||||
services.blueman.enable = true;
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
{ ... }: {
|
||||
{ lib, config, ... }: lib.mkIf(config.withContainers) {
|
||||
virtualisation.podman = {
|
||||
enable = true;
|
||||
dockerCompat = true;
|
|
@ -4,67 +4,51 @@
|
|||
|
||||
{ inputs, pkgs, ... }: {
|
||||
imports = [
|
||||
./audio.nix
|
||||
./containers.nix
|
||||
./distrobox.nix
|
||||
./fonts.nix
|
||||
./games.nix
|
||||
./audio
|
||||
./bluetooth
|
||||
./containers
|
||||
./distrobox
|
||||
./games
|
||||
./gnome
|
||||
./home
|
||||
./niri
|
||||
./virt.nix
|
||||
./nvidia
|
||||
./virt
|
||||
];
|
||||
|
||||
# Overlays for nixpkgs
|
||||
nixpkgs.overlays = [
|
||||
inputs.nur.overlay
|
||||
];
|
||||
|
||||
# Needed for some nautilus features like auto-mount and trash
|
||||
services.gvfs.enable = true;
|
||||
|
||||
# 57621: spotifyd
|
||||
networking.firewall.allowedTCPPorts = [ 57621 ];
|
||||
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
|
||||
# Wayland in electron
|
||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
|
||||
networking.extraHosts =
|
||||
''
|
||||
10.10.11.245 surveillance.htb
|
||||
'';
|
||||
|
||||
nix.nixPath = ["nixpkgs=${inputs.nixpkgs}"];
|
||||
|
||||
# Allow packages from nixpkgs
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
nixpkgs = {
|
||||
overlays = [
|
||||
inputs.nur.overlay
|
||||
];
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
};
|
||||
};
|
||||
|
||||
#Optimise nix store
|
||||
nix = {
|
||||
nixPath = ["nixpkgs=${inputs.nixpkgs}"];
|
||||
gc = {
|
||||
automatic = true;
|
||||
dates = "weekly";
|
||||
options = "--delete-older-than 1w";
|
||||
};
|
||||
settings.auto-optimise-store = true;
|
||||
settings = {
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
auto-optimise-store = true;
|
||||
};
|
||||
};
|
||||
|
||||
# Enable nix flakes
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
# Disable documentation
|
||||
documentation.nixos.enable = false;
|
||||
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
networking = {
|
||||
networkmanager.enable = true;
|
||||
extraHosts =
|
||||
''
|
||||
10.10.11.245 surveillance.htb
|
||||
'';
|
||||
};
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
|
||||
# Select internationalisation properties.
|
||||
i18n = {
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
|
||||
|
@ -81,35 +65,45 @@
|
|||
};
|
||||
};
|
||||
|
||||
# Configure xserver
|
||||
fonts = {
|
||||
packages = with pkgs; [
|
||||
alegreya
|
||||
alegreya-sans
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
];
|
||||
fontconfig = {
|
||||
defaultFonts = {
|
||||
serif = [ "Alegreya" ];
|
||||
sansSerif = [ "Alegreya Sans" ];
|
||||
monospace = [ "Fira Code Nerd Font" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
excludePackages = [ pkgs.xterm ];
|
||||
displayManager.gdm.enable = true;
|
||||
xkb = {
|
||||
layout = "us";
|
||||
variant = "";
|
||||
};
|
||||
};
|
||||
|
||||
# Configure xkb
|
||||
services.xserver.xkb = {
|
||||
layout = "us";
|
||||
variant = "";
|
||||
};
|
||||
|
||||
# Enable CUPS to print documents.
|
||||
services.printing.enable = false;
|
||||
|
||||
# Security
|
||||
security.rtkit.enable = true;
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
|
||||
users.users.twoneis = {
|
||||
isNormalUser = true;
|
||||
description = "twoneis";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
};
|
||||
|
||||
# Use zsh
|
||||
programs.zsh.enable = true;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
|
||||
# Allow swaylock to PAM authentication
|
||||
security.pam.services.swaylock = {};
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, lib, config, ... }: lib.mkIf (config.withGnome) {
|
||||
# Enable the GNOME Desktop Environment.
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
# Don't pull unnecessary packages
|
||||
# Don't install unnecessary packages
|
||||
services.gnome.core-utilities.enable = false;
|
||||
environment.gnome.excludePackages = [ pkgs.gnome-tour ];
|
||||
|
|
@ -1,4 +1,9 @@
|
|||
{ ... }: {
|
||||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
signal-desktop
|
||||
fractal
|
||||
];
|
||||
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
profiles = {
|
|
@ -1,15 +1,20 @@
|
|||
{ ... }: {
|
||||
{ config, ... }: let
|
||||
imp = if config.minimal then [
|
||||
./browser
|
||||
./communication
|
||||
./niri-setup
|
||||
./programs
|
||||
./themes
|
||||
./utils
|
||||
] else [
|
||||
./utils
|
||||
];
|
||||
in {
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
users.twoneis = {
|
||||
imports = [
|
||||
../../system/home/direnv
|
||||
../../system/home/editor
|
||||
../../system/home/git
|
||||
../../system/home/shell
|
||||
./server-utils
|
||||
];
|
||||
imports = imp;
|
||||
|
||||
home = {
|
||||
username = "twoneis";
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, osConfig, pkgs, ... }: let
|
||||
theme = import ../../../../colors.nix;
|
||||
theme = import ../../colors.nix;
|
||||
in lib.mkIf (osConfig.withNiri) {
|
||||
programs.fuzzel= {
|
||||
enable = true;
|
|
@ -1,12 +1,22 @@
|
|||
{ pkgs, osConfig, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
krita
|
||||
loupe
|
||||
gnome.nautilus
|
||||
];
|
||||
|
||||
# Needed for some features in nautilus such as auto-mounting and trash
|
||||
osConfig.services.gvfs.enable = true;
|
||||
|
||||
programs.pandoc = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.mpv = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
osConfig.networking.firewall.allowedTCPPorts = [ 57621 ];
|
||||
services.spotifyd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
@ -19,4 +29,10 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = import ./alacritty-config.nix;
|
||||
};
|
||||
|
||||
}
|
|
@ -30,4 +30,18 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
home.pointerCursor = let getFrom = url: hash: name: {
|
||||
gtk.enable = true;
|
||||
x11.enable = true;
|
||||
name = name;
|
||||
size = 24;
|
||||
package = pkgs.runCommand "moveUp" {} ''
|
||||
mkdir -p $out/share/icons
|
||||
ln -s ${pkgs.fetchzip{
|
||||
url = url;
|
||||
hash = hash;
|
||||
}} $out/share/icons/${name}
|
||||
'';
|
||||
}; in getFrom "https://github.com/rose-pine/cursor/releases/download/v1.1.0/BreezeX-RosePine-Linux.tar.xz" "sha256-t5xwAPGhuQUfGThedLsmtZEEp1Ljjo3Udhd5Ql3O67c=" "BreezX-RosePine-Linux";
|
||||
}
|
112
modules/home/utils/default.nix
Normal file
112
modules/home/utils/default.nix
Normal file
|
@ -0,0 +1,112 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
man-pages
|
||||
man-pages-posix
|
||||
tree
|
||||
zip
|
||||
unzip
|
||||
thefuck
|
||||
];
|
||||
|
||||
home.file = {
|
||||
".gdbinit" = {
|
||||
source = ./gdbinit;
|
||||
};
|
||||
};
|
||||
|
||||
programs.man = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "twoneis";
|
||||
userEmail = "sanjay29@sapura.de";
|
||||
extraConfig = {
|
||||
init.defaultBranch = "main";
|
||||
push.autoSetupRemote = true;
|
||||
};
|
||||
};
|
||||
|
||||
programs.gh = {
|
||||
enable = true;
|
||||
gitCredentialHelper.enable = true;
|
||||
};
|
||||
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
extraPackages = with pkgs; [ nil marksman ];
|
||||
settings = import ./helix-config.nix;
|
||||
languages = import ./helix-languages.nix;
|
||||
};
|
||||
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
programs.bottom = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.lsd = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
};
|
||||
|
||||
programs.hyfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
preset = "transgender";
|
||||
mode = "rgb";
|
||||
light_dark = "dark";
|
||||
lightness = 0.65;
|
||||
color_align = {
|
||||
mode = "horizontal";
|
||||
custom_colors = [];
|
||||
fore_back = null;
|
||||
};
|
||||
backend = "neofetch";
|
||||
args = null;
|
||||
distro = "nixos_old";
|
||||
pride_month_shown = [];
|
||||
pride_month_disable = false;
|
||||
};
|
||||
};
|
||||
|
||||
home.shellAliases = {
|
||||
ga = "git add";
|
||||
gc = "git commit -m ";
|
||||
gca = "git add -A && git commit -am ";
|
||||
gs = "git stash";
|
||||
gsp = "git stash pop";
|
||||
gp = "git push";
|
||||
gpl = "git pull --recurse-submodules";
|
||||
gst = "git status";
|
||||
|
||||
repl = "nix repl --expr 'import <nixpkgs>{}'";
|
||||
|
||||
nrb = "sudo nixos-rebuild switch --flake . --cores 0";
|
||||
nd = "nix develop";
|
||||
|
||||
neofetch = "hyfetch";
|
||||
};
|
||||
|
||||
# For direnv and shell aliases the shell needs to be managed by hm
|
||||
programs.bash.enable = true;
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
autosuggestion.enable = true;
|
||||
enableVteIntegration = true;
|
||||
history.ignoreAllDups = true;
|
||||
historySubstringSearch.enable = true;
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [ "git" "thefuck" ];
|
||||
theme = "bira";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -79,7 +79,7 @@
|
|||
|
||||
spawn-at-startup = [
|
||||
{ command = ["waybar"]; }
|
||||
{ command = ["swaybg" "-i" "${../../../wallpaper/wallpaper.png}" "-m" "fill"]; }
|
||||
{ command = ["swaybg" "-i" "${../../wallpaper/wallpaper.png}" "-m" "fill"]; }
|
||||
{ command = ["pamixer" "--set-volume" "0"]; }
|
||||
{ command = ["brightnessctl" "s" "50%"]; }
|
||||
{ command = ["systemctl" "--user" "restart" "spotifyd.service"]; }
|
|
@ -10,5 +10,4 @@
|
|||
nvidiaSettings = false;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.vulkan_beta;
|
||||
};
|
||||
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
{ ... }: {
|
||||
services.create_ap = {
|
||||
enable = true;
|
||||
settings = {
|
||||
INTERNET_IFACE = "enp2s0";
|
||||
WIFI_IFACE = "wlp1s0";
|
||||
SSID = "home";
|
||||
PASSPHRASE = "FCKask4net";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
{ ... }: {
|
||||
services.calibre-server = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
|
@ -1,73 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
# ./access-point.nix
|
||||
./calibre.nix
|
||||
];
|
||||
|
||||
# Allow ssh access
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PasswordAuthentication = true;
|
||||
KbdInteractiveAuthentication = true;
|
||||
};
|
||||
};
|
||||
|
||||
# Allow packages from nixpkgs
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
};
|
||||
|
||||
#Optimise nix store
|
||||
nix = {
|
||||
gc = {
|
||||
automatic = true;
|
||||
dates = "weekly";
|
||||
options = "--delete-older-than 30d";
|
||||
};
|
||||
settings.auto-optimise-store = true;
|
||||
};
|
||||
|
||||
# Enable nix flakes
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
# Disable documentation
|
||||
documentation.nixos.enable = false;
|
||||
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
|
||||
# Select internationalisation properties.
|
||||
i18n = {
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
|
||||
extraLocaleSettings = {
|
||||
LC_ADDRESS = "en_US.UTF-8";
|
||||
LC_IDENTIFICATION = "en_US.UTF-8";
|
||||
LC_MEASUREMENT = "en_US.UTF-8";
|
||||
LC_MONETARY = "en_US.UTF-8";
|
||||
LC_NAME = "en_US.UTF-8";
|
||||
LC_NUMERIC = "en_US.UTF-8";
|
||||
LC_PAPER = "en_US.UTF-8";
|
||||
LC_TELEPHONE = "en_US.UTF-8";
|
||||
LC_TIME = "en_US.UTF-8";
|
||||
};
|
||||
};
|
||||
|
||||
# Security
|
||||
security.rtkit.enable = true;
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.twoneis = {
|
||||
isNormalUser = true;
|
||||
description = "twoneis";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
};
|
||||
|
||||
# Use zsh
|
||||
programs.zsh.enable = true;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
}
|
|
@ -1,43 +0,0 @@
|
|||
|
||||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
man-pages
|
||||
man-pages-posix
|
||||
tree
|
||||
zip
|
||||
unzip
|
||||
];
|
||||
|
||||
programs.man = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.bottom = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.lsd = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
};
|
||||
|
||||
programs.hyfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
preset = "transgender";
|
||||
mode = "rgb";
|
||||
light_dark = "dark";
|
||||
lightness = 0.65;
|
||||
color_align = {
|
||||
mode = "horizontal";
|
||||
custom_colors = [];
|
||||
fore_back = null;
|
||||
};
|
||||
backend = "neofetch";
|
||||
args = null;
|
||||
distro = "nixos_old";
|
||||
pride_month_shown = [];
|
||||
pride_month_disable = false;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,16 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
# Configure fonts
|
||||
fonts.packages = with pkgs; [
|
||||
alegreya
|
||||
alegreya-sans
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
];
|
||||
|
||||
fonts.fontconfig = {
|
||||
defaultFonts = {
|
||||
serif = [ "Alegreya" ];
|
||||
sansSerif = [ "Alegreya Sans" ];
|
||||
monospace = [ "Fira Code Nerd Font" ];
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
krita
|
||||
];
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
signal-desktop
|
||||
fractal
|
||||
];
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
home.pointerCursor = let getFrom = url: hash: name: {
|
||||
gtk.enable = true;
|
||||
x11.enable = true;
|
||||
name = name;
|
||||
size = 24;
|
||||
package = pkgs.runCommand "moveUp" {} ''
|
||||
mkdir -p $out/share/icons
|
||||
ln -s ${pkgs.fetchzip{
|
||||
url = url;
|
||||
hash = hash;
|
||||
}} $out/share/icons/${name}
|
||||
'';
|
||||
}; in getFrom "https://github.com/rose-pine/cursor/releases/download/v1.1.0/BreezeX-RosePine-Linux.tar.xz" "sha256-t5xwAPGhuQUfGThedLsmtZEEp1Ljjo3Udhd5Ql3O67c=" "BreezX-RosePine-Linux";
|
||||
}
|
|
@ -1,45 +0,0 @@
|
|||
{ ... }: {
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
users.twoneis = {
|
||||
imports = [
|
||||
./art
|
||||
./browser
|
||||
./chat
|
||||
./cursor
|
||||
./discord
|
||||
./direnv
|
||||
./editor
|
||||
./email
|
||||
./gdb
|
||||
./git
|
||||
./media
|
||||
./niri-setup
|
||||
./notes
|
||||
./shell
|
||||
./terminal
|
||||
./themes
|
||||
./utils
|
||||
];
|
||||
|
||||
home = {
|
||||
username = "twoneis";
|
||||
homeDirectory = "/home/twoneis";
|
||||
|
||||
stateVersion = "22.11";
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
dconf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
programs.bash.enable = true;
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
dorion
|
||||
];
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
extraPackages = with pkgs; [ nil marksman ];
|
||||
settings = import ./helix-config.nix;
|
||||
languages = import ./helix-languages.nix;
|
||||
};
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{ ... }: {
|
||||
home.file = {
|
||||
".gdbinit" = {
|
||||
source = ./gdbinit;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,16 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "twoneis";
|
||||
userEmail = "sanjay29@sapura.de";
|
||||
extraConfig = {
|
||||
init.defaultBranch = "main";
|
||||
push.autoSetupRemote = true;
|
||||
};
|
||||
};
|
||||
|
||||
programs.gh = {
|
||||
enable = true;
|
||||
gitCredentialHelper.enable = true;
|
||||
};
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
|
|
@ -1,5 +0,0 @@
|
|||
{ ... }: {
|
||||
programs.pandoc = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
|
@ -1,41 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
thefuck
|
||||
git
|
||||
];
|
||||
|
||||
home.shellAliases = {
|
||||
ga = "git add";
|
||||
gc = "git commit -m ";
|
||||
gca = "git add -A && git commit -am ";
|
||||
gs = "git stash";
|
||||
gsp = "git stash pop";
|
||||
gp = "git push";
|
||||
gpl = "git pull --recurse-submodules";
|
||||
gst = "git status";
|
||||
|
||||
repl = "nix repl --expr 'import <nixpkgs>{}'";
|
||||
|
||||
nrb = "sudo nixos-rebuild switch --flake . --cores 0";
|
||||
nd = "nix develop";
|
||||
|
||||
neofetch = "hyfetch";
|
||||
};
|
||||
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
autosuggestion.enable = true;
|
||||
enableVteIntegration = true;
|
||||
history.ignoreAllDups = true;
|
||||
historySubstringSearch.enable = true;
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [ "git" "thefuck" ];
|
||||
theme = "bira";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
man-pages
|
||||
man-pages-posix
|
||||
];
|
||||
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = import ./alacritty-config.nix;
|
||||
};
|
||||
}
|
|
@ -1,45 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
man-pages
|
||||
man-pages-posix
|
||||
gnome.nautilus
|
||||
baobab
|
||||
tree
|
||||
zip
|
||||
unzip
|
||||
blueberry
|
||||
];
|
||||
|
||||
programs.man = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.bottom = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.lsd = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
};
|
||||
|
||||
programs.hyfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
preset = "transgender";
|
||||
mode = "rgb";
|
||||
light_dark = "dark";
|
||||
lightness = 0.65;
|
||||
color_align = {
|
||||
mode = "horizontal";
|
||||
custom_colors = [];
|
||||
fore_back = null;
|
||||
};
|
||||
backend = "neofetch";
|
||||
args = null;
|
||||
distro = "nixos_old";
|
||||
pride_month_shown = [];
|
||||
pride_month_disable = false;
|
||||
};
|
||||
};
|
||||
}
|
22
options.nix
22
options.nix
|
@ -1,10 +1,18 @@
|
|||
{ lib, ... }: {
|
||||
options = {
|
||||
withNiri = with lib; mkEnableOption "Enable niri compositor";
|
||||
withGnome = with lib; mkEnableOption "Enable gnome DE";
|
||||
withNvidia = with lib; mkEnableOption "Enable proprietary nvidia drivers";
|
||||
withVM = with lib; mkEnableOption "Enable VM related configuration";
|
||||
withDistrobox = with lib; mkEnableOption "Enable Distrobox";
|
||||
withGames = with lib; mkEnableOption "Enable games";
|
||||
options = with lib; {
|
||||
minimal = mkEnableOption "Minimal setup with only cli utilities";
|
||||
full = mkEnableOption "Full setup with all programs and themes";
|
||||
|
||||
withAudio = mkEnableOption "Enable support for audio";
|
||||
withBluetooth = mkEnableOption "Enable bluetooth";
|
||||
withNvidia = mkEnableOption "Enable proprietary nvidia drivers";
|
||||
|
||||
withNiri = mkEnableOption "Enable niri compositor";
|
||||
withGnome =mkEnableOption "Enable gnome DE";
|
||||
|
||||
withVM = mkEnableOption "Enable VM related configuration";
|
||||
withContainers = mkEnableOption "Enable container support";
|
||||
withDistrobox = mkEnableOption "Enable Distrobox";
|
||||
withGames = mkEnableOption "Enable games";
|
||||
};
|
||||
}
|
||||
|
|
20
outputs.nix
20
outputs.nix
|
@ -9,8 +9,7 @@
|
|||
};
|
||||
modules = [
|
||||
./devices/ellaca
|
||||
./modules/system
|
||||
./modules/system/home
|
||||
./modules
|
||||
./options.nix
|
||||
niri.nixosModules.niri
|
||||
home-manager.nixosModules.home-manager
|
||||
|
@ -25,27 +24,12 @@
|
|||
};
|
||||
modules = [
|
||||
./devices/akarso
|
||||
./modules/system
|
||||
./modules/system/home
|
||||
./modules
|
||||
./options.nix
|
||||
nixos-hardware.nixosModules.microsoft-surface-pro-intel
|
||||
niri.nixosModules.niri
|
||||
home-manager.nixosModules.home-manager
|
||||
];
|
||||
};
|
||||
|
||||
# Zotac Mini
|
||||
# (Name should be used for an ARM device instead once i get one)
|
||||
creosote = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
./devices/creosote
|
||||
./modules/server
|
||||
home-manager.nixosModules.home-manager
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue