Compare commits

...

2 commits

Author SHA1 Message Date
88406b27ef
refactor: hjemify foot & keepassxc
Some checks failed
/ test (push) Failing after 2s
2025-02-21 09:31:26 +01:00
4581e8ff1f
feat: add freshrss and calibre-web
Some checks failed
/ test (push) Failing after 2s
2025-02-18 19:05:48 +01:00
18 changed files with 142 additions and 30 deletions

45
flake.lock generated
View file

@ -156,6 +156,49 @@
"type": "github"
}
},
"hjem": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1737619027,
"narHash": "sha256-jEzZs9dHdmVP5X9HCC/7jrv08aWFfqZV5cZ+cZWYGA4=",
"owner": "feel-co",
"repo": "hjem",
"rev": "48cfa21987672a31a358b7e4d582fc174556e633",
"type": "github"
},
"original": {
"owner": "feel-co",
"repo": "hjem",
"type": "github"
}
},
"hjem-rum": {
"inputs": {
"hjem": [
"hjem"
],
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1738790283,
"narHash": "sha256-SKz3KfmK7iupR+Ef022pQQZccxXlm/2w5HxpSv+PAGE=",
"owner": "nydragon",
"repo": "hjem-rum",
"rev": "ac4bf585731b813ad37cb3822ad44b1e3bb16a7e",
"type": "github"
},
"original": {
"owner": "nydragon",
"repo": "hjem-rum",
"type": "github"
}
},
"home-manager": {
"inputs": {
"nixpkgs": [
@ -340,6 +383,8 @@
"agenix": "agenix",
"disko": "disko",
"flake-parts": "flake-parts",
"hjem": "hjem",
"hjem-rum": "hjem-rum",
"home-manager": "home-manager",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2",

View file

@ -35,6 +35,16 @@
url = "git+https://git.ccnlc.eu/nydragon/nur.git";
inputs.nixpkgs.follows = "nixpkgs";
};
hjem = {
url = "github:feel-co/hjem";
inputs.nixpkgs.follows = "nixpkgs";
};
hjem-rum = {
url = "github:nydragon/hjem-rum";
inputs.nixpkgs.follows = "nixpkgs";
inputs.hjem.follows = "hjem";
};
};
outputs =

View file

@ -7,7 +7,6 @@
./hyprland
./hyprlock
./services
./foot.nix
./rofi
./sway
./waybar

View file

@ -6,7 +6,6 @@
./fuzzel.nix
./gammastep.nix # default because I need to protect my peepers
./swww.nix
./keepassxc.nix
./swayidle.nix
./swaylock.nix
];

View file

@ -5,7 +5,6 @@
./git
./fish
./btop.nix
./hyfetch.nix
./beets.nix
];
}

View file

@ -1,15 +0,0 @@
{
programs.fastfetch.enable = true;
programs.hyfetch = {
enable = true;
settings = {
mode = "rgb"; # dunno the other value :sob:
lightness = 0.7; # u may change this
distro = "nixos";
preset = "pansexual"; # sexuality
light_dark = "dark"; # u not crazy are u
backend = "fastfetch";
color_align.mode = "horizontal"; # looks better
};
};
}

View file

@ -12,6 +12,7 @@ in
imports = [
./hardware-configuration.nix
./home.nix
../../users/ny
];
boot.loader = {
@ -37,6 +38,7 @@ in
modules = {
system = {
roles.desktop.enable = true;
roles.gaming.enable = true;
outputs = {
"DP-2" = {

View file

@ -25,7 +25,11 @@ in
inherit username;
hostname = "brontes";
system = "x86_64-linux";
extraModules = [ inputs.agenix.nixosModules.default ];
extraModules = [
inputs.agenix.nixosModules.default
inputs.hjem.nixosModules.default
inputs.hjem-rum.nixosModules.default
];
})
(mkSystem' {

View file

@ -0,0 +1,20 @@
{ }:
{
config = {
calibre-web = {
enable = true;
options = {
enableBookUploading = true;
};
};
fileSystems."/mnt/books" = {
device = "192.168.178.21:/mnt/Fort/data/books";
fsType = "nfs";
options = [
"x-systemd.automount"
];
};
};
}

View file

@ -9,6 +9,7 @@
(modulesPath + "/profiles/qemu-guest.nix")
./disk-config.nix
./adguard.nix
./calibre-web.nix
];
swapDevices = [
@ -21,6 +22,10 @@
file = ../../secrets/adguard-dns-list.age;
mode = "444";
};
freshrss-default-password = {
file = ../../secrets/freshrss-default-password.age;
owner = config.services.freshrss.user;
};
};
boot.loader.grub = {
@ -124,6 +129,16 @@
};
incremental.enable = true;
}
{
sources = [ "/mnt/books" ];
target = {
location = "books";
type = "rsyncd";
host = "nihilus";
};
incremental.enable = true;
}
];
};
};
@ -176,6 +191,11 @@
"paperless.ccnlc.eu" = mkVHLocal config.modules.server.paperless.port;
"fritz.ccnlc.eu" = mkVH "http://192.168.178.1" 80;
"truenas.ccnlc.eu" = mkVH "https://192.168.178.21" 443;
"calibre.ccnlc.eu" = mkVHLocal config.services.calibre-web.listen.port;
${config.services.freshrss.virtualHost} = {
forceSSL = true;
useACMEHost = "ccnlc.eu";
};
};
};
@ -231,6 +251,13 @@
port = 5000;
};
freshrss = {
enable = true;
passwordFile = config.age.secrets.freshrss-default-password.path;
virtualHost = "rss.ccnlc.eu";
baseUrl = "https://rss.ccnlc.eu";
};
home-assistant = {
enable = true;
openFirewall = true;

View file

@ -22,15 +22,17 @@ in
programs.steam = {
enable = true;
gamescopeSession.enable = true; # Adds a steam entry to the login manager
extest.enable = true;
localNetworkGameTransfers.openFirewall = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
lutris
mangohud
heroic
];
};
}

View file

@ -0,0 +1,7 @@
age-encryption.org/v1
-> ssh-ed25519 a1hgwg jQShep0qAznVUIKf3/tZk3Ax7xdIG55K/vo/WgTMqxo
822i7jJOTvRKh07Gt2ku3wKARZ60d3SZYiQ7sXh6Y9Q
-> ssh-ed25519 WcjW5A Q6DSl3XFuXmIXtk+gdpDYjQILvc9IvVB8xaTw/lDnwM
c9nOjNf/Wz97hDQFgbr3hoyuy9NGVYTDiFq79cmpGM8
--- QEJe1HN6nbQdjHAhL4DRJvcc7WJsfSMddYJhkKMSOKE
™¼Ù˯iä!ìO§ß­ý<>2+Z¨0¹iʹõÕön´<6E>áéuœnÏ¥êNw‰<77>úe·%±Æ5<C2BD>Ÿ¡¤ D;º—{?FKQ»xA,©Ièú½ |NzX/ÍhzLþŽ

View file

@ -20,4 +20,8 @@ in
raptus
ny
];
"freshrss-default-password.age".publicKeys = [
shan
ny
];
}

1
users/default.nix Normal file
View file

@ -0,0 +1 @@
{ imports = [ ./ny ]; }

9
users/ny/default.nix Normal file
View file

@ -0,0 +1,9 @@
{
hjem = {
users.ny = {
enable = true;
imports = [ ./programs ];
};
clobberByDefault = true;
};
}

View file

@ -0,0 +1,6 @@
{
imports = [
./foot.nix
./keepassxc.nix
];
}

View file

@ -1,5 +1,5 @@
{
programs.foot = {
rum.programs.foot = {
enable = true;
settings = {
main = {

View file

@ -1,12 +1,7 @@
{ pkgs, ... }:
let
ini = pkgs.formats.ini { };
in
{
home.file."keepassxc" = {
rum.programs.keepassxc = {
enable = true;
source = ini.generate "keepassxc.ini" {
settings = {
General = {
BackupBeforeSave = true;
ConfigVersion = 2;
@ -24,7 +19,5 @@ in
TrayIconAppearance = "colorful";
};
};
target = ".config/keepassxc/keepassxc.ini";
};
}