refactor flake.nix
This commit is contained in:
parent
56b2a00b0a
commit
6b1c70bffd
5 changed files with 51 additions and 63 deletions
|
@ -134,6 +134,7 @@
|
|||
drawio
|
||||
imv
|
||||
zathura
|
||||
playerctl
|
||||
opentabletdriver
|
||||
|
||||
# entertainment
|
||||
|
@ -144,11 +145,14 @@
|
|||
steam
|
||||
wine
|
||||
lutris
|
||||
gamemode
|
||||
bottles
|
||||
osu-lazer
|
||||
osu-lazer
|
||||
prismlauncher
|
||||
|
||||
# theming
|
||||
catppuccin-gtk
|
||||
catppuccin-cursors
|
||||
|
||||
# fun stuff
|
||||
cbonsai
|
||||
|
@ -171,6 +175,7 @@
|
|||
cargo
|
||||
jre
|
||||
jdk
|
||||
jdk17
|
||||
jq
|
||||
nodejs
|
||||
polkit_gnome
|
||||
|
|
22
flake.lock
22
flake.lock
|
@ -24,9 +24,7 @@
|
|||
"hyprland": {
|
||||
"inputs": {
|
||||
"hyprland-protocols": "hyprland-protocols",
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
],
|
||||
"nixpkgs": "nixpkgs",
|
||||
"wlroots": "wlroots",
|
||||
"xdph": "xdph"
|
||||
},
|
||||
|
@ -77,6 +75,22 @@
|
|||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1671359686,
|
||||
"narHash": "sha256-3MpC6yZo+Xn9cPordGz2/ii6IJpP2n8LE8e/ebUXLrs=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "04f574a1c0fde90b51bf68198e2297ca4e7cccf4",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1671108576,
|
||||
"narHash": "sha256-6ggOL6KoaELNA1562tnPjtAnQ9SwsKRTgeuaXvPzCwI=",
|
||||
|
@ -96,7 +110,7 @@
|
|||
"inputs": {
|
||||
"home-manager": "home-manager",
|
||||
"hyprland": "hyprland",
|
||||
"nixpkgs": "nixpkgs"
|
||||
"nixpkgs": "nixpkgs_2"
|
||||
}
|
||||
},
|
||||
"utils": {
|
||||
|
|
63
flake.nix
63
flake.nix
|
@ -1,48 +1,37 @@
|
|||
{
|
||||
description = "notohh's flake";
|
||||
|
||||
inputs = {
|
||||
# Nixpkgs
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
|
||||
# Call hyprland
|
||||
hyprland = {
|
||||
url = "github:hyprwm/Hyprland";
|
||||
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
# Home manager
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
hyprland.url = "github:hyprwm/Hyprland";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, home-manager, self, hyprland, ... }@inputs: {
|
||||
|
||||
nixosConfigurations = {
|
||||
nixos = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; flake-self = self; };
|
||||
|
||||
modules = [ ./configuration.nix
|
||||
|
||||
hyprland.nixosModules.default
|
||||
{ programs.hyprland.enable = true; }
|
||||
];
|
||||
outputs = { self, nixpkgs, home-manager, hyprland, ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
};
|
||||
|
||||
homeConfigurations = {
|
||||
"notoh@nixos" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
|
||||
modules = [./home.nix];
|
||||
lib = nixpkgs.lib;
|
||||
|
||||
in {
|
||||
nixosConfigurations = {
|
||||
nixos = lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
./configuration.nix
|
||||
hyprland.nixosModules.default
|
||||
{programs.hyprland.enable = true;}
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.notoh = import ./modules/home/home.nix;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -7,26 +7,6 @@
|
|||
|
||||
];
|
||||
|
||||
nixpkgs = {
|
||||
|
||||
overlays = [
|
||||
|
||||
];
|
||||
|
||||
config = {
|
||||
|
||||
allowUnfree = true;
|
||||
|
||||
allowUnfreePredicate = (_: true);
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
home = {
|
||||
username = "notoh";
|
||||
homeDirectory = "/home/notoh/";
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
programs.git.enable = true;
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ in
|
|||
"$HOME/bin/:$PATH"
|
||||
];
|
||||
|
||||
GTK_THEME = "Catppuccin-Pink-Dark";
|
||||
GTK_THEME = "Catppuccin-Pink-Dark";
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue