Compare commits

..

No commits in common. "102f56e3b5e485239a5e06890eedb0d3fe4f5c24" and "568dc2f4abbbffaca5df0e6dd04e33aa3fdb1423" have entirely different histories.

4 changed files with 22 additions and 27 deletions

View File

@ -92,11 +92,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1719994518, "lastModified": 1717285511,
"narHash": "sha256-pQMhCCHyQGRzdfAkdJ4cIWiw+JNuWsTX7f0ZYSyz0VY=", "narHash": "sha256-iKzJcpdXih14qYVcZ9QC9XuZYnPc6T8YImb6dX166kw=",
"owner": "hercules-ci", "owner": "hercules-ci",
"repo": "flake-parts", "repo": "flake-parts",
"rev": "9227223f6d922fee3c7b190b2cc238a99527bbb7", "rev": "2a55567fcf15b1b1c7ed712a2c6fadaec7412ea8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -204,11 +204,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1720289319, "lastModified": 1719584202,
"narHash": "sha256-E3CjSsXNDWYqoNjrKQLPdEZDLR+mVI9HMa+jY//FjBY=", "narHash": "sha256-lL0j2vltAX4L5z6APsQVCpNrfzI15P0O/tZ5PMgUCXE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "10486e6b311b3c5ae1c3477fee058704cea7cb4a", "rev": "f50e2779edbc905ab131ce7ce36b14a09ab44f3c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -227,11 +227,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1720256686, "lastModified": 1719467057,
"narHash": "sha256-ihHXj+fp/BVpc86rCNN+Qbnpg6OrbeI+jxz6VRyzcy0=", "narHash": "sha256-8gQ0txwuLoBpBeIhTAkl+/7Hi/AD4KE5m4YhOn1OA3E=",
"owner": "nix-community", "owner": "nix-community",
"repo": "neovim-nightly-overlay", "repo": "neovim-nightly-overlay",
"rev": "9822e0611d49ae70278ac20c9d7b68e4797b2fab", "rev": "bb6bea003dc464a4248a173e71a007d368691092",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -243,11 +243,11 @@
"neovim-src": { "neovim-src": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1720175946, "lastModified": 1719414226,
"narHash": "sha256-9tiW0rkQZGhnNaIP6gWj7N/iTlCLFdD5r37R1jVOs3s=", "narHash": "sha256-h/qJ+1R+BtY+mX02UsqYW82hEl78mrHTGAs9yjpFEzU=",
"owner": "neovim", "owner": "neovim",
"repo": "neovim", "repo": "neovim",
"rev": "3c53e8f78511d6db9a6c804e5a479ba38c33102d", "rev": "fc9b70826ec88ca2e6c0624c522b872e87aa7ac1",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -258,11 +258,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1720181791, "lastModified": 1719379843,
"narHash": "sha256-i4vJL12/AdyuQuviMMd1Hk2tsGt02hDNhA0Zj1m16N8=", "narHash": "sha256-u+D+IOAMMl70+CJ9NKB+RMrASjInuIWMHzjLWQjPZ6c=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "4284c2b73c8bce4b46a6adf23e16d9e2ec8da4bb", "rev": "b3f3c1b13fb08f3828442ee86630362e81136bbc",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -274,11 +274,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1720031269, "lastModified": 1719254875,
"narHash": "sha256-rwz8NJZV+387rnWpTYcXaRNvzUSnnF9aHONoJIYmiUQ=", "narHash": "sha256-ECni+IkwXjusHsm9Sexdtq8weAq/yUyt1TWIemXt3Ko=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "9f4128e00b0ae8ec65918efeba59db998750ead6", "rev": "2893f56de08021cffd9b6b6dfc70fd9ccd51eb60",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -55,9 +55,6 @@
gparted gparted
arandr arandr
brave
firefox
# steam # steam
spotify spotify
discord discord

View File

@ -1,8 +1,5 @@
{ pkgs, inputs, ... }: { pkgs, inputs, ... }:
let
neovim-package = inputs.neovim-overlay.packages.${pkgs.system}.default;
in
{ {
imports = [ imports = [
../../home ../../home
@ -10,7 +7,7 @@ in
snowhawk.neovim = { snowhawk.neovim = {
enable = true; enable = true;
package = neovim-package; package = inputs.neovim-overlay.packages.${pkgs.system}.default;
}; };
snowhawk.alacritty.enable = true; snowhawk.alacritty.enable = true;
snowhawk.theme.enable = true; snowhawk.theme.enable = true;
@ -38,6 +35,7 @@ in
feh feh
imagemagick imagemagick
brave
uhk-agent uhk-agent
pulsemixer pulsemixer

View File

@ -16,8 +16,8 @@ in
''; '';
}; };
loaderTimeout = mkOption { loaderTimeout = mkOption {
default = 5; default = 0;
example = 0; example = 5;
description = '' description = ''
The timeout for the bootloader select screen The timeout for the bootloader select screen
''; '';