Compare commits

..

6 commits

Author SHA1 Message Date
ae54ad7e5d nixpkgs follow? 2024-06-28 20:20:52 -07:00
c44aa23749 easyeffects 2024-06-28 20:18:20 -07:00
920a2d8886 resigned system service 2024-06-28 19:28:07 -07:00
5b015349c0 trying hm service 2024-06-28 19:25:15 -07:00
2c3c3cc854 moving nom package 2024-06-28 19:25:07 -07:00
0df91fa659 removing redundant i18n settings 2024-06-28 19:06:54 -07:00
7 changed files with 36 additions and 32 deletions

View file

@ -1,5 +1,25 @@
{ {
"nodes": { "nodes": {
"backgrounds": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1719630871,
"narHash": "sha256-laSbApuWgBoDLJUzeJKSGiqP8wwxXXQ/XnIJKihezqk=",
"ref": "refs/heads/main",
"rev": "42d5fff03e9a8aa5ad8a1dac45be209ca12b66d5",
"revCount": 8,
"type": "git",
"url": "https://git.zynh.me/Zynh0722/backgrounds"
},
"original": {
"type": "git",
"url": "https://git.zynh.me/Zynh0722/backgrounds"
}
},
"fish_theme": { "fish_theme": {
"flake": false, "flake": false,
"locked": { "locked": {
@ -254,6 +274,7 @@
}, },
"root": { "root": {
"inputs": { "inputs": {
"backgrounds": "backgrounds",
"fish_theme": "fish_theme", "fish_theme": "fish_theme",
"home-manager": "home-manager", "home-manager": "home-manager",
"neovim-overlay": "neovim-overlay", "neovim-overlay": "neovim-overlay",

View file

@ -15,6 +15,11 @@
url = "git+https://git.zynh.me/Zynh0722/omf-theme"; url = "git+https://git.zynh.me/Zynh0722/omf-theme";
flake = false; flake = false;
}; };
backgrounds = {
url = "git+https://git.zynh.me/Zynh0722/backgrounds";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = outputs =

View file

@ -32,21 +32,6 @@
# Set your time zone. # Set your time zone.
time.timeZone = "America/Los_Angeles"; time.timeZone = "America/Los_Angeles";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
# Enable the X11 windowing system. # Enable the X11 windowing system.
services.xserver.enable = true; services.xserver.enable = true;

View file

@ -78,11 +78,10 @@
fzf fzf
tree tree
nix-output-monitor
gparted gparted
arandr arandr
flameshot flameshot
easyeffects
# steam # steam
spotify spotify

View file

@ -24,6 +24,7 @@
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
nix-output-monitor
(writeShellScriptBin "rebuild" '' (writeShellScriptBin "rebuild" ''
nixos-rebuild switch --log-format internal-json -v |& nom --json nixos-rebuild switch --log-format internal-json -v |& nom --json
'') '')

View file

@ -32,21 +32,6 @@
# Set your time zone. # Set your time zone.
time.timeZone = "America/Los_Angeles"; time.timeZone = "America/Los_Angeles";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
# Enable the X11 windowing system. # Enable the X11 windowing system.
services.xserver.enable = true; services.xserver.enable = true;

View file

@ -36,6 +36,14 @@ in
partOf = [ "graphical-session.target" ]; partOf = [ "graphical-session.target" ];
}; };
systemd.user.services.fehbg = {
script = ''
/home/ravenshade/bg.sh
'';
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
dmenu dmenu
]; ];