home: clean up flake

This commit is contained in:
Julian Mutter 2024-01-26 12:34:39 +01:00
parent 548b1ac34f
commit 15a27c4607

View File

@ -2,7 +2,6 @@
description = "Home Manager configuration of julian"; description = "Home Manager configuration of julian";
inputs = { inputs = {
# Specify the source of Home Manager and Nixpkgs.
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-23.11"; nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-23.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
@ -25,12 +24,9 @@
unstable = import nixpkgs-unstable { unstable = import nixpkgs-unstable {
inherit system; inherit system;
config.allowUnfree = true; config.allowUnfree = true;
# my = self.
}; };
}; };
# pkgs-unstable = nixpkgs-unstable.legacyPackages.${system};
# pkgs-stable = nixpkgs-stable.legacyPackages.${system};
pkgs = import nixpkgs-stable { pkgs = import nixpkgs-stable {
inherit system; inherit system;
config.allowUnfree = true; config.allowUnfree = true;
@ -38,7 +34,6 @@
}; };
in { in {
homeConfigurations."julian" = home-manager.lib.homeManagerConfiguration { homeConfigurations."julian" = home-manager.lib.homeManagerConfiguration {
# pkgs = pkgs;
inherit pkgs; inherit pkgs;
# Specify your home configuration modules here, for example, # Specify your home configuration modules here, for example,