Compare commits

..

No commits in common. "cab06248d249e6fe87a037b60f5b0478fb3c57f6" and "d8af7fa3cb08f28fbac9e67b81b64e55417d0377" have entirely different histories.

6 changed files with 7 additions and 39 deletions

View file

@ -1104,11 +1104,11 @@
}, },
"nixpkgs_4": { "nixpkgs_4": {
"locked": { "locked": {
"lastModified": 1709569716, "lastModified": 1709309926,
"narHash": "sha256-iOR44RU4jQ+YPGrn+uQeYAp7Xo7Z/+gT+wXJoGxxLTY=", "narHash": "sha256-VZFBtXGVD9LWTecGi6eXrE0hJ/mVB3zGUlHImUs2Qak=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "617579a787259b9a6419492eaac670a5f7663917", "rev": "79baff8812a0d68e24a836df0a364c678089e2c7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -1689,8 +1689,7 @@
"home-manager": "home-manager", "home-manager": "home-manager",
"neovim-flake": "neovim-flake", "neovim-flake": "neovim-flake",
"nixpkgs": "nixpkgs_4", "nixpkgs": "nixpkgs_4",
"snowfall-lib": "snowfall-lib", "snowfall-lib": "snowfall-lib"
"unstable": "unstable"
} }
}, },
"rust-overlay": { "rust-overlay": {
@ -2005,22 +2004,6 @@
"type": "github" "type": "github"
} }
}, },
"unstable": {
"locked": {
"lastModified": 1709479366,
"narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "b8697e57f10292a6165a20f03d2f42920dfaf973",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"utils": { "utils": {
"locked": { "locked": {
"lastModified": 1656928814, "lastModified": 1656928814,

View file

@ -4,9 +4,6 @@
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11"; nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
# NixPkgs Unstable (nixos-unstable)
unstable.url = "github:nixos/nixpkgs/nixos-unstable";
snowfall-lib = { snowfall-lib = {
url = "github:snowfallorg/lib"; url = "github:snowfallorg/lib";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";

View file

@ -20,6 +20,7 @@
tools = { tools = {
git.enable = true; git.enable = true;
direnv.enable = true; direnv.enable = true;
ssh.enable = true;
}; };
}; };
@ -40,7 +41,7 @@
favorite-apps = [ favorite-apps = [
"org.gnome.Console.desktop" "org.gnome.Console.desktop"
"jetbrains-toolbox.desktop" "JetBrains Toolbox.desktop"
"org.mozilla.firefox.desktop" "org.mozilla.firefox.desktop"
"firefox.desktop" "firefox.desktop"
"thunderbird.desktop" "thunderbird.desktop"

View file

@ -81,7 +81,6 @@ in
firefox firefox
gh gh
git git
gimp
gnome.gnome-software gnome.gnome-software
gnomeExtensions.appindicator gnomeExtensions.appindicator
gnomeExtensions.dash-to-panel gnomeExtensions.dash-to-panel

View file

@ -1,7 +0,0 @@
{ channels, ... }:
final: prev:
{
inherit (channels.unstable) jetbrains-toolbox;
}

View file

@ -12,10 +12,7 @@ with lib.plusultra;
enable = true; enable = true;
operation = "boot"; operation = "boot";
allowReboot = false; allowReboot = false;
flags = [ flags = [ "--update-input" "nixpkgs" ];
"--update-input" "nixpkgs"
"--update-input" "unstable"
];
flake = "git+https://git.hoyer.xyz/harald/nixcfg#x1"; flake = "git+https://git.hoyer.xyz/harald/nixcfg#x1";
}; };
@ -33,7 +30,6 @@ with lib.plusultra;
timeout = 2; timeout = 2;
}; };
initrd.systemd.enable = true; initrd.systemd.enable = true;
kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
}; };
# Configure console keymap # Configure console keymap
@ -69,7 +65,6 @@ with lib.plusultra;
tpm2-pkcs11.out tpm2-pkcs11.out
tpm2-tools tpm2-tools
vim vim
virt-manager
wget wget
]; ];
shells = [ pkgs.fish pkgs.bash ]; shells = [ pkgs.fish pkgs.bash ];