mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-07-03 23:16:01 +00:00
~
This commit is contained in:
parent
986322b7c4
commit
9c374df42f
3 changed files with 72 additions and 0 deletions
38
nixos/home.nix
Normal file
38
nixos/home.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz";
|
||||
plasma-manager = builtins.fetchTarball "https://github.com/nix-community/plasma-manager/archive/trunk.tar.gz";
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
"${home-manager}/nixos"
|
||||
"${plasma-manager}/modules"
|
||||
];
|
||||
|
||||
home-manager.users.rae = {
|
||||
home.stateVersion = "24.11";
|
||||
|
||||
programs = {
|
||||
git = {
|
||||
enable = true;
|
||||
userName = "roxwize";
|
||||
userEmail = "rae@roxwize.xyz";
|
||||
};
|
||||
plasma = {
|
||||
enable = true;
|
||||
panels = [
|
||||
{
|
||||
location = "top";
|
||||
height = 32;
|
||||
widgets = [
|
||||
"org.kde.plasma.kickoff"
|
||||
"org.kde.plasma.icontasks"
|
||||
"org.kde.plasma.marginsseparator"
|
||||
"org.kde.plasma.digitalclock"
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue