pushing budgie changes

This commit is contained in:
specCon18 2024-02-19 20:32:50 -05:00
parent 2ee8fe31a8
commit 26c000e2ad
9 changed files with 20 additions and 25 deletions

16
flake.lock generated
View file

@ -85,16 +85,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1692099905, "lastModified": 1706981411,
"narHash": "sha256-/pSusGhmIdSdAaywQRFA5dVbfdIzlWQTecM+E46+cJ0=", "narHash": "sha256-cLbLPTL1CDmETVh4p0nQtvoF+FSEjsnJTFpTxhXywhQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "2a6679aa9cc3872c29ba2a57fe1b71b3e3c5649f", "rev": "652fda4ca6dafeb090943422c34ae9145787af37",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-23.05", "ref": "release-23.11",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
@ -281,16 +281,16 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1692339729, "lastModified": 1707650010,
"narHash": "sha256-TUK76/Pqm9qIDjEGd27Lz9EiBIvn5F70JWDmEQ4Y5DQ=", "narHash": "sha256-dOhphIA4MGrH4ElNCy/OlwmN24MsnEqFjRR6+RY7jZw=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "ae521bd4e460b076a455dca8b13f4151489a725c", "rev": "809cca784b9f72a5ad4b991e0e7bcf8890f9c3a6",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixos-23.05", "ref": "nixos-23.11",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View file

@ -2,13 +2,13 @@
description = "spec's nixos configs"; description = "spec's nixos configs";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";
sops-nix.url = "github:Mic92/sops-nix"; sops-nix.url = "github:Mic92/sops-nix";
xremap.url = "github:xremap/nix-flake"; xremap.url = "github:xremap/nix-flake";
hyprland.url = "github:hyprwm/Hyprland"; hyprland.url = "github:hyprwm/Hyprland";
home-manager = { home-manager = {
url = "github:nix-community/home-manager/release-23.05"; url = "github:nix-community/home-manager/release-23.11";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
disko = { disko = {
@ -67,16 +67,15 @@
./modules/system/desktop-environments/tuigreet.nix ./modules/system/desktop-environments/tuigreet.nix
./modules/system/desktop-environments/hyprland.nix ./modules/system/desktop-environments/hyprland.nix
./modules/system/desktop-environments/budgie.nix ./modules/system/desktop-environments/budgie.nix
./modules/system/desktop-environments/gnome.nix
./hosts/katana/default.nix ./hosts/katana/default.nix
./hosts/katana/bluetooth.nix ./hosts/katana/bluetooth.nix
./hosts/katana/networkd.nix ./hosts/katana/networkd.nix
./hosts/katana/system-pkgs.nix ./hosts/katana/system-pkgs.nix
./modules/system/services/docker.nix ./modules/system/services/docker.nix
./modules/system/services/openssh.nix ./modules/system/services/openssh.nix
./modules/system/desktop-environments/gnome.nix
./modules/system/services/syncthing.nix ./modules/system/services/syncthing.nix
./modules/system/services/tailscale.nix ./modules/system/services/tailscale.nix
] #extra modules to be loaded by nixos ] #extra modules to be loaded by nixos
[ [
hyprland.homeManagerModules.default hyprland.homeManagerModules.default
@ -89,7 +88,6 @@
./modules/home-manager/zoxide.nix ./modules/home-manager/zoxide.nix
./modules/home-manager/ncspot.nix ./modules/home-manager/ncspot.nix
./modules/home-manager/zellij.nix ./modules/home-manager/zellij.nix
./modules/home-manager/nushell.nix
./modules/home-manager/direnv.nix ./modules/home-manager/direnv.nix
./modules/home-manager/home-manager.nix ./modules/home-manager/home-manager.nix
./modules/home-manager/starship.nix ./modules/home-manager/starship.nix

View file

@ -32,7 +32,6 @@
services = { services = {
printing.enable = true; printing.enable = true;
xserver = { xserver = {
displayManager.gdm.enable = true;
layout = "us"; layout = "us";
xkbVariant = ""; xkbVariant = "";
}; };
@ -65,7 +64,7 @@
hyprland.enable = false; hyprland.enable = false;
gnome.enable = false; gnome.enable = false;
budgie.enable = true; budgie.enable = true;
displayManager.tuigreet.enable = true; displayManager.tuigreet.enable = false;
}; };
}; };
fonts.fonts = with pkgs; [ fonts.fonts = with pkgs; [

View file

@ -25,5 +25,6 @@
felix-fm felix-fm
gitui gitui
spotify spotify
zulip
]; ];
} }

View file

@ -16,7 +16,7 @@
lines = 25; lines = 25;
}; };
decorations = "full"; decorations = "full";
opacity = 0.9; opacity = 1.0;
title = "Alacritty"; title = "Alacritty";
}; };
font = { font = {

View file

@ -1,6 +0,0 @@
{ pkgs, config, lib, ...}:
{
programs.nushell = {
enable = false;
};
}

View file

@ -14,10 +14,13 @@ in {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
budgie.budgie-desktop-with-plugins budgie.budgie-desktop-with-plugins
lightdm
]; ];
services.xserver = { services.xserver = {
enable = true; enable = true;
desktopManager.budgie.enable = true; desktopManager.budgie.enable = true;
displayManager.gdm.enable = true;
};
}; };
} }

View file

@ -30,11 +30,11 @@ in {
enable = true; enable = true;
wayland = true; wayland = true;
}; };
# defaultSession = lib.mkDefault "gnome"; defaultSession = lib.mkDefault "budgie-desktop";
}; };
desktopManager = { desktopManager = {
xterm.enable = false; xterm.enable = false;
gnome.enable = lib.mkDefault true; # gnome.enable = lib.mkDefault true;
}; };
}; };
}; };

View file

@ -21,7 +21,7 @@
firefox firefox
discord discord
gimp gimp
obsidian # obsidian
neofetch neofetch
vlc vlc
remmina remmina