litten: add home-manager
This commit is contained in:
parent
4458099c55
commit
bc642392a2
6
litten.brenise.dev/Makefile
Normal file
6
litten.brenise.dev/Makefile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# makefiles require tabs, not spaces
|
||||||
|
# :set noexpandtab
|
||||||
|
|
||||||
|
.PHONY: update
|
||||||
|
update:
|
||||||
|
home-manager switch --flake .#plebconf
|
@ -10,8 +10,11 @@ in
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
<home-manager/nixos>
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
nixpkgs.config = {
|
nixpkgs.config = {
|
||||||
allowUnfreePredicate = pkg:
|
allowUnfreePredicate = pkg:
|
||||||
builtins.elem (lib.getName pkg) [
|
builtins.elem (lib.getName pkg) [
|
||||||
@ -21,6 +24,7 @@ in
|
|||||||
"vscode"
|
"vscode"
|
||||||
"terraform"
|
"terraform"
|
||||||
"zoom"
|
"zoom"
|
||||||
|
"charlatan3"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
@ -101,11 +105,14 @@ in
|
|||||||
"glance"
|
"glance"
|
||||||
];
|
];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
binutils
|
||||||
chromium
|
chromium
|
||||||
coreutils # base64
|
coreutils # base64
|
||||||
element-desktop
|
element-desktop
|
||||||
firefox
|
firefox
|
||||||
gimp
|
gimp
|
||||||
|
gnumake
|
||||||
|
home-manager
|
||||||
jellyfin-media-player
|
jellyfin-media-player
|
||||||
kate # kwrite
|
kate # kwrite
|
||||||
kdenlive
|
kdenlive
|
||||||
@ -170,6 +177,7 @@ in
|
|||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
# home-manager.users.blee = { };
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = with pkgs; [
|
systemPackages = with pkgs; [
|
||||||
|
26
litten.brenise.dev/flake.nix
Normal file
26
litten.brenise.dev/flake.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
description = "Home Manager configuration";
|
||||||
|
|
||||||
|
inputs = {
|
||||||
|
nixpkgs.url = "nixpkgs/nixos-23.11";
|
||||||
|
|
||||||
|
home-manager = {
|
||||||
|
url = "github:nix-community/home-manager/release-23.11";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = { nixpkgs, home-manager, ... }:
|
||||||
|
let
|
||||||
|
lib = nixpkgs.lib;
|
||||||
|
system = "x86_64-linux";
|
||||||
|
pkgs = import nixpkgs { inherit system; };
|
||||||
|
in {
|
||||||
|
homeConfigurations = {
|
||||||
|
plebconf = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit pkgs;
|
||||||
|
modules = [ ./home.nix ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
13
litten.brenise.dev/home.nix
Normal file
13
litten.brenise.dev/home.nix
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{ lib, pkgs, ... }:
|
||||||
|
{
|
||||||
|
home = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
hello
|
||||||
|
];
|
||||||
|
|
||||||
|
username = "blee";
|
||||||
|
homeDirectory = "/home/${username}";
|
||||||
|
|
||||||
|
stateVersion = "23.11";
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user