Compare commits

..

1 commit

Author SHA1 Message Date
79014bf719
feat: declarative wallpapers1
Some checks failed
/ test (push) Failing after 2s
2025-02-24 19:45:04 +01:00
18 changed files with 40 additions and 109 deletions

45
flake.lock generated
View file

@ -156,49 +156,6 @@
"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": 1740423947,
"narHash": "sha256-TLUC9rkFZBvKSnNtrdkHY0NsnKmW6XYRIdje6Yt2b3w=",
"owner": "nydragon",
"repo": "hjem-rum",
"rev": "de016de0f8e602529f88c0dbd840e4091b566f3f",
"type": "github"
},
"original": {
"owner": "nydragon",
"repo": "hjem-rum",
"type": "github"
}
},
"home-manager": {
"inputs": {
"nixpkgs": [
@ -383,8 +340,6 @@
"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

@ -36,16 +36,6 @@
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";
};
wallpapers.url = "git+https://git.ccnlc.eu/nydragon/wallpapers.git";
};

View file

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

View file

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

View file

@ -3,8 +3,10 @@
./firefox
./thunderbird
./vscode
./fuzzel.nix
./gammastep.nix # default because I need to protect my peepers
./swww.nix
./keepassxc.nix
./swayidle.nix
./swaylock.nix
];

View file

@ -1,10 +1,7 @@
{ libmy, osConfig, ... }:
let
inherit (osConfig.modules.system.roles) desktop;
in
{ lib, osConfig, ... }:
{
rum.programs.fuzzel = {
enable = desktop.enable;
programs.fuzzel = {
enable = true;
settings = {
main = {
icon-theme = "Papirus-Dark";
@ -12,7 +9,7 @@ in
font = "Hack:weight=bold";
line-height = 30;
fields = "name,generic,comment";
terminal = libmy.getExe desktop.terminal;
terminal = lib.my.getExe osConfig.modules.system.roles.desktop.terminal;
prompt = ''" "'';
layer = "overlay";
};

View file

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

View file

@ -7,7 +7,6 @@
}:
let
inherit (lib) mapAttrsToList mkIf hasAttr;
inherit (lib.my) getExe;
in
mkIf osConfig.programs.hyprland.enable {
home.sessionVariables.ELECTRON_OZONE_PLATFORM_HINT = "auto";
@ -149,13 +148,13 @@ mkIf osConfig.programs.hyprland.enable {
bindm = [ "$mod,mouse:272,movewindow" ];
bind = [
"$mod, D, exec, ${getExe osConfig.modules.system.roles.desktop.runner.package}"
"$mod, E, exec, ${getExe osConfig.modules.system.roles.desktop.filemanager}"
"$mod, Return, exec, ${getExe osConfig.modules.system.roles.desktop.terminal}"
"$mod, D, exec, ${pkgs.fuzzel}/bin/fuzzel"
"$mod, E, exec, ${lib.my.getExe osConfig.modules.system.roles.desktop.filemanager}"
"$mod, Return, exec, ${lib.my.getExe osConfig.modules.system.roles.desktop.terminal}"
"$mod SHIFT, Q, killactive,"
"$mod, V, togglefloating"
"$mod SHIFT, P, exec, ${config.programs.rofi.package}/bin/rofi -show p -modi p:${pkgs.rofi-power-menu}/bin/rofi-power-menu"
"$mod, P, exec, ${getExe pkgs.cliphist} wipe & ${getExe pkgs.hyprlock}"
"$mod, P, exec, ${pkgs.cliphist}/bin/cliphist wipe & ${pkgs.hyprlock}/bin/hyprlock"
"$mod SHIFT, C, exec, hyprctl reload"
"$mod SHIFT, space, togglefloating"
"$mod, left, movefocus, l"

View file

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

15
home/terminal/hyfetch.nix Normal file
View file

@ -0,0 +1,15 @@
{
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,7 +12,6 @@ in
imports = [
./hardware-configuration.nix
./home.nix
../../users/ny
];
boot.loader = {
@ -26,14 +25,6 @@ in
group = "wheel";
};
virtualisation.docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
services.logind = {
powerKey = "hibernate";
};

View file

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

View file

@ -9,7 +9,6 @@
./hardware-configuration.nix
./home.nix
./ny.nix
../../users/ny
];
time.timeZone = "Europe/Paris";

View file

@ -3,7 +3,7 @@
defaultApplications =
let
fileManager = "org.gnome.Nautilus.desktop";
browser = "firefox-esr.desktop";
browser = "firefox-beta.desktop";
in
{
"inode/directory" = fileManager;

View file

@ -30,6 +30,7 @@ in
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
lutris
mangohud
heroic
];

View file

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

View file

@ -1,13 +0,0 @@
{ lib, ... }:
{
hjem = {
users.ny = {
enable = true;
imports = [ ./programs ];
};
specialArgs = {
libmy = lib.my;
};
clobberByDefault = true;
};
}

View file

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