summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-05-30 21:06:53 -0500
committerozpv <39195175+ozpv@users.noreply.github.com>2026-05-30 21:06:53 -0500
commit7395bbde16b6816f6823189a9c37f8d9a6fbf82c (patch)
tree5a81968a619867865810b05d279ac7144e9ced5c
parentccff75ce40f47d233ccbda36e11648ff6f841b35 (diff)
change to self-hosted gitmain
-rw-r--r--.gitignore2
-rw-r--r--configuration.nix37
-rw-r--r--hardware-configuration.nix31
3 files changed, 10 insertions, 60 deletions
diff --git a/.gitignore b/.gitignore
index 577b0a0..b67363b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-hardware-configuration.nix
+./hardware-configuration.nix
diff --git a/configuration.nix b/configuration.nix
index b5ce96f..386a4a2 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -139,7 +139,8 @@
windowManager.dwm.enable = true;
windowManager.dwm.package = pkgs.dwm.overrideAttrs {
src = fetchGit {
- url = "https://github.com/ozpv/dwm.git";
+ url = "https://git.haemolacriaa.com/dwm";
+ ref = "main";
rev = "0fc8dd0a9a13136097f5c15b64ffa3e8ef8043fd";
};
};
@@ -147,20 +148,6 @@
xkb.variant = "";
};
- services.keyd = {
- enable = true;
- keyboards = {
- default = {
-
- ids = [ "*" ];
- settings = {
- main = {
- capslock = "backspace";
- };
- };
- };
- };
- };
# compostior
services.picom.enable = true;
@@ -172,7 +159,6 @@
"networkmanager"
"wheel"
"libvirtd"
- "docker"
];
packages = with pkgs; [ ];
shell = pkgs.zsh;
@@ -190,14 +176,6 @@
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
- # docker
- virtualisation.docker.enable = true;
-
- virtualisation.docker.rootless = {
- enable = true;
- setSocketVariable = true;
- };
-
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
@@ -208,20 +186,23 @@
networkmanagerapplet
(st.overrideAttrs {
src = fetchGit {
- url = "https://github.com/ozpv/st.git";
+ url = "https://git.haemolacriaa.com/st";
+ ref = "main";
rev = "887af06f324f6e85e1bfb6f596ba2409d134c8f0";
};
})
(dmenu.overrideAttrs {
src = fetchGit {
- url = "https://github.com/ozpv/dmenu.git";
+ url = "https://git.haemolacriaa.com/dmenu";
+ ref = "main";
rev = "8a6dfa7db55749c9bc48ee6bdd6f65c43095e123";
};
})
(slstatus.overrideAttrs {
src = fetchGit {
- url = "https://github.com/ozpv/slstatus.git";
- rev = "e4f6dca31f3a77d0b9c268e3b7ce4139b6fa71a0";
+ url = "https://git.haemolacriaa.com/slstatus";
+ ref = "main";
+ rev = "07ca8d3530ecf21b780f818172794f4a34826576";
};
})
(callPackage ./apps/powermenu.nix { })
diff --git a/hardware-configuration.nix b/hardware-configuration.nix
deleted file mode 100644
index a925e9b..0000000
--- a/hardware-configuration.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-# Do not modify this file! It was generated by ‘nixos-generate-config’
-# and may be overwritten by future invocations. Please make changes
-# to /etc/nixos/configuration.nix instead.
-{ config, lib, pkgs, modulesPath, ... }:
-
-{
- imports =
- [ (modulesPath + "/installer/scan/not-detected.nix")
- ];
-
- boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-amd" ];
- boot.extraModulePackages = [ ];
-
- fileSystems."/" =
- { device = "/dev/disk/by-uuid/2e9244f1-463e-465a-914e-28ab18837d77";
- fsType = "ext4";
- };
-
- fileSystems."/boot" =
- { device = "/dev/disk/by-uuid/C0B5-C3DE";
- fsType = "vfat";
- options = [ "fmask=0077" "dmask=0077" ];
- };
-
- swapDevices = [ ];
-
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
- hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
-}