Skip to content

Commit

Permalink
Upgrade nixos
Browse files Browse the repository at this point in the history
  • Loading branch information
FaustXVI committed Dec 8, 2024
1 parent fd7b5e6 commit df7e35c
Show file tree
Hide file tree
Showing 13 changed files with 39 additions and 37 deletions.
34 changes: 17 additions & 17 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "My nixos config";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
unstable-pkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
nur = {
Expand All @@ -13,7 +13,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
};
Expand Down
6 changes: 3 additions & 3 deletions modules/hardware/gui.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
hardware = {
opengl = {
graphics = {
enable = true;
};
};
Expand All @@ -12,13 +12,13 @@
i3status
i3lock
libnotify
gnome3.adwaita-icon-theme
adwaita-icon-theme
dunst
arandr
autorandr
udiskie
pasystray
gnome.nautilus
nautilus
];
};
services = {
Expand Down
2 changes: 1 addition & 1 deletion modules/hardware/keyboard.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
];
};
};
sound.mediaKeys.enable = true;
#sound.mediaKeys.enable = true;
}
2 changes: 1 addition & 1 deletion modules/hardware/sound.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
};
hardware = {
pulseaudio = {
enable = true;
enable = false;
support32Bit = true;
package = pkgs.pulseaudioFull;
};
Expand Down
10 changes: 6 additions & 4 deletions modules/hardware/yubikey.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,16 @@ in
};
security = {
pam = {
services.login.u2fAuth = true;
sshAgentAuth = {
enable = true;
};
u2f = {
enable = true;
control = "required";
cue = true;
authFile = authFile;
enable = true;
control = "required";
settings = {
authfile = authFile;
};
};
};
};
Expand Down
4 changes: 2 additions & 2 deletions modules/purposes/gaming/gaming.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
};

hardware = {
opengl = {
driSupport32Bit = true;
graphics = {
enable32Bit = true;
extraPackages32 = [ pkgs.pkgsi686Linux.libva ];
};
};
Expand Down
2 changes: 1 addition & 1 deletion modules/purposes/home-office/home-printer.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
config = mylib.mkIfComputerHasPurpose "home-office" {
environment = {
systemPackages = with pkgs; [
gnome.simple-scan
simple-scan
];
};
services = {
Expand Down
2 changes: 1 addition & 1 deletion modules/purposes/work/firefox.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ in
{
config = mylib.mkIfComputerHasPurpose "work" {
home-manager.users.xadet = { ... }: {
programs.firefox.profiles = {
programs.firefox.profiles = lib.mkForce {
"perso".isDefault = false;
"eove" = {
id = 1;
Expand Down
2 changes: 1 addition & 1 deletion modules/system/fonts.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
packages = with pkgs; [
nerdfonts
noto-fonts
noto-fonts-cjk
noto-fonts-cjk-sans
noto-fonts-emoji
liberation_ttf
fira-code
Expand Down
3 changes: 0 additions & 3 deletions modules/system/home-manager/shells/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@
fd = {
enable = true;
};
taskwarrior = {
enable = true;
};
zoxide = {
enable = true;
options = [ "--cmd cd" ];
Expand Down
1 change: 1 addition & 0 deletions modules/system/home-manager/shells/wezterm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ in
return {
font = wezterm.font "${font}",
font_size = 18,
front_end = "WebGpu",
scrollback_lines = 20000,
color_scheme = 'Darcula (base16)',
keys = {
Expand Down
4 changes: 3 additions & 1 deletion modules/system/shells.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
};
programs = {
bash = {
enableCompletion = true;
completion = {
enable = true;
};
};
fish = {
enable = true;
Expand Down

0 comments on commit df7e35c

Please sign in to comment.