This commit is contained in:
willifan 2024-05-12 22:34:32 +02:00
parent 5a74c0f0c3
commit 91a90350a9
8 changed files with 49 additions and 24 deletions

View File

@ -4,12 +4,12 @@
inputs = { inputs = {
# NixOS official package source, using the nixos-23.11 branch here # NixOS official package source, using the nixos-23.11 branch here
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.url = "github:NixOS/nixpkgs/nixos-unstable";
hardware.url = "github:nixos/nixos-hardware"; hardware.url = "github:nixos/nixos-hardware";
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs-unstable.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
@ -28,25 +28,33 @@
}; };
outputs = { self, nixpkgs-unstable, home-manager, ... }@inputs: { outputs = { self, nixpkgs, home-manager, ... }@inputs:
let
inherit (self) outputs;
forAllSystems = nixpkgs.lib.genAttrs [
"x86_64-linux"
];
inherit (nixpkgs) lib;
configVars = import ./vars { inherit inputs lib; };
specialArgs = { inherit inputs outputs configVars nixpkgs; };
in
{
# Please replace my-nixos with your hostname # Please replace my-nixos with your hostname
nixosConfigurations.Lenni = nixpkgs-unstable.lib.nixosSystem { nixosConfigurations = {
system = "x86_64-linux"; Lenni = lib.nixosSystem {
modules = [ inherit specialArgs;
# Import the previous configuration.nix we used, modules = [
# so the old configuration file still takes effect home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.nixosModules.home-manager home-manager.useUserPackages = true;
{ #home-manager.users.willifan = import ./users/willifan/home;
home-manager.useGlobalPkgs = true; # Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
home-manager.useUserPackages = true; }
#home-manager.users.willifan = import ./users/willifan/home; ./hosts
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix ./users/willifan
} ];
./hosts };
./users/willifan
];
}; };
}; };
} }

2
scripts/rebuild.sh Normal file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env bash

2
scripts/update.sh Normal file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env bash

View File

@ -6,7 +6,11 @@
grim grim
slurp slurp
wl-clipboard wl-clipboard
playerctl
kanshi kanshi
jq jq
bc bc
xorg.xrandr xorg.xrandr
@ -14,11 +18,13 @@
inotify-tools inotify-tools
papirus-icon-theme papirus-icon-theme
eww eww
mako mako
polkit_gnome polkit_gnome
dconf dconf
python3
usbutils usbutils
unzip unzip

View File

@ -161,7 +161,7 @@
''$mainMod, V, togglefloating, '' ''$mainMod, V, togglefloating, ''
''$mainMod, R, exec, wofi --show drun'' ''$mainMod, R, exec, wofi --show drun''
''$mainMod, J, togglesplit, # dwindle'' ''$mainMod, J, togglesplit, # dwindle''
''$mainMod, P, exec, enpass'' ''$mainMod, P, exec, Enpass''
''$mainMod, T, exec, hyprctl dispatch exec "[float; pin; size 40% 40%; move 100%-41% 40] kitty bpytop -b proc"'' ''$mainMod, T, exec, hyprctl dispatch exec "[float; pin; size 40% 40%; move 100%-41% 40] kitty bpytop -b proc"''
''$mainMod, W, exec, networkmanager_dmenu'' ''$mainMod, W, exec, networkmanager_dmenu''
''$mainMod, F, fullscreen'' ''$mainMod, F, fullscreen''

View File

@ -4,7 +4,10 @@
fonts.fontconfig = { fonts.fontconfig = {
enable = true; enable = true;
defaultFonts = { defaultFonts = {
monospace = [ "jetbrains-mono" ]; monospace = [ "JetBrains Mono" ];
serif = [ "" ];
sansSerif = [ "" ];
emoji = [ "" ];
}; };
}; };
}; };

View File

@ -5,7 +5,7 @@
gtk = { gtk = {
enable = true; enable = true;
font = { font = {
name = "jetbrains-mono"; name = "JetBrains Mono";
package = pkgs.jetbrains-mono; package = pkgs.jetbrains-mono;
}; };

4
vars/default.nix Normal file
View File

@ -0,0 +1,4 @@
{ pkgs, ... }:
{
}